export declare class UserInfoCreateDTO { photo?: string; birthDate?: string; note?: string; } export declare class UserInfoUpdateDTO { photo?: string; birthDate?: string; note?: string; } export declare class UserInfoResponseDTO { photo?: string; birthDate?: string; note?: string; constructor(model: UserInfoResponseDTO); static of(model: UserInfoResponseDTO): UserInfoResponseDTO; }