import ConditionImpl from '../ConditionImpl'; export declare const GREATER_THAN_TYPE = ">"; export default class GreaterThanCondition extends ConditionImpl { constructor(props: any); checkTrue(): Promise; /** * Does nothing. */ makeTrue(): Promise; }