import { ElementType } from 'react'; interface FilterOption { label: string; value: string; } interface FilterDropdownProps { icon: ElementType; label: string; options: FilterOption[]; activeFilters: string[]; onFilterChange: (value: string, checked: boolean) => void; type: "checkbox" | "radio"; } export declare function FilterDropdown({ icon: Icon, label, options, activeFilters, onFilterChange, type, }: FilterDropdownProps): import("react/jsx-runtime").JSX.Element; export {};