import { ReactNode } from 'react'; /** * FilterPanel * Classification: custom * * A container for filter controls (Search, Select, severity Chips...) with a * consistent header and apply/clear footer. Compose filter inputs as children. */ export interface FilterPanelProps { children: ReactNode; title?: string; onApply?: () => void; onClear?: () => void; /** Active filter count shown in the header. */ activeCount?: number; } export declare function FilterPanel({ children, title, onApply, onClear, activeCount, }: FilterPanelProps): import("react").JSX.Element;