import type { SearchConfig } from "../lib/config/SearchConfig";
import type { PropsWithChildren } from "react";
/**
 * Extends the elasticsearch SearchContext with additional functionality. This provider automatically
 * detects the SearchContext and uses it. When used outside a SearchContext, this provider silently does nothing.
 * @param props
 * @constructor
 */
export declare function ReactSearchComponentContextProvider(props: PropsWithChildren & {
    config: SearchConfig;
}): import("react/jsx-runtime").JSX.Element;
