export declare class User {
    id: number;
    uuid: string;
    generateUuid(): void;
    email: string;
    username: string;
    password: string;
    provider: 'google' | 'apple' | 'facebook';
    providerId: string;
}
