import { Type } from "igniteui-webcomponents-core"; /** * Constants which determine the manner in which cell values * are compared to the [[ConditionValue.value]] * property when conditional criteria is evaluated by an * [[IconSetConditionalFormat]]. */ export declare enum ThresholdComparison { /** * The cell value can be greater than or equal to the threshold value. */ GreaterEqual = 0, /** * The cell value must be greater than but not equal to the threshold value. */ Greater = 1 } /** * @hidden */ export declare let ThresholdComparison_$type: Type;