export declare class CreateClientCompanyContactDto {
    client_company_id: number;
    first_name: string;
    last_name: string;
    email: string;
    country_code: string;
    phone_number: string;
    position?: string;
}
