interface ICondition { id?: string; logic?: string; target?: any; operator?: string; value?: any; children?: ICondition[]; } export declare const complieExpression: (rootCondition: ICondition) => any; export {};