/** Dependencies */ import { ConditionBlock } from "tripetto-runner-foundation"; import { TMode } from "./mode"; export interface IEvaluateCondition { readonly variable?: string; readonly mode?: TMode; readonly value?: string | number; readonly to?: string | number; readonly ignoreCase?: boolean; } export declare class EvaluateCondition extends ConditionBlock { private getMatchString; private getNumber; private getDate; validate(): boolean; }