export declare class RegisterDto {
    fullName: string;
    email: string;
    phone: string;
    academicProgram: string;
    password?: string;
}
