export interface iJPath {
    search(searchIn: any, path: string): Promise<any>;
}
export declare class jPath implements iJPath {
    search(searchIn: any, path: string): Promise<any>;
    private _getSelectPath;
}
