import { IConditionFunction } from './IConditionFunction'; /** * True condition * * @author Dilip Kola */ export declare class TrueCondition implements IConditionFunction { evaluate(): boolean; }