export declare class UserResponseDto {
    id: number;
    name: string;
    email: string;
    emailVerifiedAt?: Date;
}
