import { type ReactNode } from "react"; import type { FilterTheme } from "./types.js"; /** * @internal */ export declare const useOptionalFilterTheme: () => FilterTheme | undefined; /** * @internal */ export declare const useFilterTheme: () => FilterTheme; /** * This component takes a theme prop and applies it to the children. * * It should preferably be used at the root of your filter component tree. */ export declare function FilterThemeProvider({ theme, children, }: { theme: FilterTheme; children?: ReactNode; }): import("react").JSX.Element; //# sourceMappingURL=context.d.ts.map