import type { ComponentType } from 'react'; import type { AnyObject, FilterComponentProps, FilterConfig } from '../types'; export type DrawerProps = { config: FilterConfig[]; components?: Record>; labels: { submit: string; clear: string; clearAll: string; drawerHeader: string; }; }; export declare const FiltersDrawer: ({ config, components, labels }: DrawerProps) => import("react").JSX.Element | null; //# sourceMappingURL=FiltersDrawer.d.ts.map