import { InvoiceProductTypeModel } from './invoice-product-type.model'; import { TypeTvaModel } from './type-tva.model'; import { TerritoryModel } from './territory.model'; import { ZoneModel } from './zone.model'; export declare class TypeTvaCompanyTerritoryModel { id: number; label: string; codeLlabel: string; typeTva: TypeTvaModel; companyCode: string; invoiceProductType: InvoiceProductTypeModel; activated: boolean; territory: TerritoryModel; zone: ZoneModel; constructor(); fromJSON(json: any): this; fromJSONs(jsons: any): TypeTvaCompanyTerritoryModel[]; }