import { IFunction, IGivenNode, IParsedResult, IRuleResult, IRunOpts, IRunRule, IThen } from './types'; export declare const lintNode: (node: IGivenNode, rule: IRunRule, then: IThen, apply: IFunction, opts: IRunOpts, parsedResult: IParsedResult) => IRuleResult[]; export declare const whatShouldBeLinted: (path: (string | number)[], originalValue: any, rule: IRunRule) => { lint: boolean; value: any; };