export interface IndicatorForBODMAS { _id: string; title: string; shortKey: number; conditionString?: string; customCondition?: {}[]; } export interface OperatedIndicator { and: RawIndicator[]; } export interface RawIndicator { order: string; value: {}; }