import { Optional } from './common'; declare type IPath = { (bits: string[]): (object: object) => Optional; (bits: string[], object: object): Optional; }; export declare const path: IPath; export {};