import { Base } from './base'; import { Address } from './address'; export declare class Company extends Base { companyID?: string; companyName?: string; taxationIdentificationNumber?: string; logoCompany?: string; companyAddress?: Address; constructor(data?: any | null); }