import { IConditionFunction } from './IConditionFunction'; /** * Not condition * * @author Dilip Kola */ export declare class NotCondition implements IConditionFunction { evaluate(args?: any, context?: any): boolean | Promise; }