export declare class UpdateCompanyProfileDto {
    companyName?: string;
    webSite?: string;
    countryId: number;
    stateId: number;
    cityId: number;
    companyAddress: string;
    addressLine: string;
    postalCode: string;
    mobileCode: string;
    phoneNumber?: string;
    email?: string;
    aboutCompany?: string;
}
