import { VerifyFunction } from '@bleco/authentication'; import { Provider } from '@loopback/context'; import { UserCredentialsRepository, UserRepository } from '@loopx/user-core'; import { AuthaPostVerifyFn, AuthaPreVerifyFn, AuthaSignUpFn } from '../../../providers'; export declare class AuthaVerifyProvider implements Provider { userRepository: UserRepository; userCredsRepository: UserCredentialsRepository; private readonly signupProvider; private readonly preVerifyProvider; private readonly postVerifyProvider; constructor(userRepository: UserRepository, userCredsRepository: UserCredentialsRepository, signupProvider: AuthaSignUpFn, preVerifyProvider: AuthaPreVerifyFn, postVerifyProvider: AuthaPostVerifyFn); value(): VerifyFunction.AuthaFn; }