import { Knex } from 'knex'; import { User, AuthProvider } from '../types'; import { KnexUserService } from '../userService'; export declare class PasswordlessProvider implements AuthProvider { private config; constructor(config: { tokenStore: Knex; userService: KnexUserService; sendToken: (email: string, token: string) => Promise; }); authenticate({ email }: { email: string; }): Promise; validate(token: string): Promise; } //# sourceMappingURL=passwordless.d.ts.map