import { IOpRule } from './operators/types'; export interface IFormRuleEngineOptions { rule: IOpRule; } export declare class FormRuleEngine { private options; private resolver; constructor(options: IFormRuleEngineOptions); compile(): void; execute(data: any, currentPath: string): boolean; }