import { UsersController } from './users.controller';
import { ProviderUsersService } from '../services/provider-users.service';
import { AuthService } from '../services/authentication.service';
export declare class ProviderUsersController extends UsersController {
    service: ProviderUsersService;
    authService: AuthService;
    constructor(service: ProviderUsersService, authService: AuthService);
}
