import { Model } from '../deco'; export declare class UserModel extends Model { id: string; firstname: string; lastname: string; email: string; emailValidated: boolean; mobile: string; mobileValidated: boolean; requireDoubleAuth: boolean; roles: Array; hideOnboarding: boolean; createAccount(options?: any): Promise; validAccountCreationToken(method: 'email' | 'mobile', token: string, code: string): Promise; get _label(): string; }