import { CostCenterCriteriaModel } from './cost-center-criteria.model'; import { CompanyModel } from './company.model'; import { ReferentialEntityStateModel } from './referential-entity-state.model'; export declare class CostCenterModel { id: number; code: string; companyId: number; company: CompanyModel; doubling: boolean; entityStateDto: ReferentialEntityStateModel; label: string; criterias: CostCenterCriteriaModel[]; formattedLabel: string; formattedString: string; constructor(); fromJSON(json: any): this; fromJSONs(jsons: any): CostCenterModel[]; } //# sourceMappingURL=cost-center.model.d.ts.map