import type { ComponentProps, ComponentType } from 'react'; import { Row } from '../../../components/Row'; import type { AnyObject, FilterComponentProps, FilterConfig } from '../types'; export type MainRowProps = { config: FilterConfig[]; components?: Record>; labels: { seeAll?: string; clearAll: string; }; layout?: { mainFilters?: (keyof V)[]; size?: 'large' | 'medium'; templateColumns?: ComponentProps['templateColumns']; }; className?: string; }; export declare const FiltersMainRow: ({ config, components, labels, layout, className, }: MainRowProps) => import("react").JSX.Element; //# sourceMappingURL=FiltersMainRow.d.ts.map