export interface ICompany { business_name: string; company_name: string; tax_id: string; fiscal_address: string; city: string; country: string; province: string; latitude: string; longitude: string; business_group: string; name: string; phone: string; email: string; is_coworking_too: boolean; description?: string; } export declare class Company implements ICompany { business_name: string; company_name: string; tax_id: string; fiscal_address: string; city: string; country: string; province: string; latitude: string; longitude: string; business_group: string; name: string; phone: string; email: string; is_coworking_too: boolean; description?: string; constructor(company: ICompany); }