import { ElasticsearchQuerySearchValuePlugins, ModelField } from "../types";
interface FieldPathFactoryParams {
    plugins: ElasticsearchQuerySearchValuePlugins;
}
interface FieldPathParams {
    field: ModelField;
    key: string;
    value: any;
    keyword: boolean;
}
export declare const createFieldPathFactory: ({ plugins }: FieldPathFactoryParams) => (params: FieldPathParams) => {
    basePath: string;
    path: string;
};
export {};
