import { User, AuthProvider, ConfigStore } from '../types'; import { KnexUserService } from '../userService'; export declare class LocalAuthProvider implements AuthProvider { private configStore; private userService; constructor(userService: KnexUserService, configStore: ConfigStore); authenticate(credentials: { email: string; password: string; }): Promise; register(user: Partial, password: string): Promise; } //# sourceMappingURL=local.d.ts.map