import { Dictionary, SelectorPath } from "./main";
type Input = Dictionary | any[];
export declare function prop<A>(path: SelectorPath, input: Input): A;
export declare function prop<A>(path: SelectorPath): (input: Input) => A;
export {};
