import { CostCenterCriteriaValueModel } from './cost-center-criteria-values.model'; export declare class CostCenterCriteriaModel { id: number; code: string; name: string; value: string; idCostCenterCriteriaValue: number; criteriaValues: CostCenterCriteriaValueModel[]; codeCostCenterCriteriaValue: string; constructor(); fromJSON(json: any): this; }