export declare class RegisterDto {
    email: string;
    password: string;
    phone?: string;
    gender?: string;
    role?: string;
}
