import { Dictionary } from "./main";
type Path = string | number | (string | number)[];
type Input = any[] | Dictionary;
export declare function propEq(path: Path, value: any, input: Input): boolean;
export declare function propEq(path: Path, value: any): (input: Input) => boolean;
export declare function propEq(path: Path): (value: any) => (input: Input) => boolean;
export {};
