import { AuthConfig, BaseAuth } from '@tego/server'; export declare class BasicAuth extends BaseAuth { constructor(config: AuthConfig); validate(): Promise; signUp(): Promise; lostPassword(): Promise; resetPassword(): Promise; getUserByResetToken(): Promise; changePassword(): Promise; }