export declare class RegisterDto {
    name: string;
    email: string;
    password: string;
    confirmPassword: string;
}
