import { IConditionFunction } from "./IConditionFunction"; /** * Starts with condition * * @author Dilip Kola */ export declare class StartsWithCondition implements IConditionFunction { evaluate(args?: any, context?: any): boolean; }