import { Observable } from 'rxjs'; import { IAMUserProviderInterface } from '../iam-provider.interface'; import { AuthServiceUser } from './auth-service-provider.interface'; import { AuthServiceProvider } from './auth-service.provider'; export declare class AuthServiceUserProvider implements IAMUserProviderInterface { private readonly authServiceProvider; constructor(authServiceProvider: AuthServiceProvider); find(query?: Record): Observable; findById(_id: string): Observable; create(user: AuthServiceUser): Observable; update(_id: string, _user: AuthServiceUser): Observable; delete(id: string): Observable; } //# sourceMappingURL=auth-service-user.provider.d.ts.map