export interface FilterGroupProps extends React.HTMLAttributes { /** Manually specify the active filter count. If not provided, will be calculated from children */ activeCount?: number; /** Callback fired when "Clear All" is clicked */ onClearAll?: () => void; } /** * FilterGroup - Container for filter components with responsive behavior. * * On mobile (horizontal variant), shows a single filter button that opens a popover. * On desktop (horizontal variant), shows individual filter buttons inline. * On compact variant, shows a single filter button with popover on all screen sizes. * On vertical variant, shows filters stacked vertically with full width. */ export declare const FilterGroup: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=filter-group.d.ts.map