export declare class UpdateClientDto {
    firstName: string;
    lastName: string;
    email: string;
    mobileCode?: string;
    phoneNumber?: string;
    password?: string;
    companyName: string;
    foundUsOn: string;
    foundUsOnDetail?: string;
    about?: string;
    webSite?: string;
    companyAddress?: string;
    addressLine?: string;
    postalCode?: string;
    countryId: number | null;
    stateId: number | null;
    cityId: number | null;
    markupPercentage?: number | null;
}
