export declare class CreateServiceProgramDTO { name: string; } export declare class UpdateServiceProgramDTO { id: string; name: string; } export declare class ServiceProgramResponseDTO { id: string; name: string; constructor(model: ServiceProgramResponseDTO); static of(model: ServiceProgramResponseDTO): ServiceProgramResponseDTO; }