import { Authenticator, Model } from '@tego/server'; export declare class AuthModel extends Model implements Authenticator { authType: string; options: any; findUser(uuid: string): Promise>; newUser(uuid: string, userValues?: any): Promise>; findOrCreateUser(uuid: string, userValues?: any): Promise>; bindUser(userId: number, uuid: string, info: Record): Promise; }