export declare class CreateClientDto {
    client_id?: string;
    name: string;
    email?: string;
    phone?: string;
    address?: string;
    companyName?: string;
    taxNumber?: string;
    notes?: string;
}
