import type { FilterTheme } from "./types.js"; export type FilterThemeInput = { dataInputViews?: FilterTheme["dataInputViews"]; components?: Partial; primitives?: Partial; templates?: Partial; }; /** * Takes an incomplete theme object and generates a complete theme object * * The returned `FilterTheme` should be passed to `FilterThemeProvider` or `FilterSphereProvider` */ export declare const createFilterTheme: (theme: FilterThemeInput) => FilterTheme; //# sourceMappingURL=create-filter-theme.d.ts.map