/// <reference types="react" />
import { type IconSetCollections } from '../libs/iconSetUtils';
type IconSetFilterPanelProps = {
    collections: IconSetCollections;
    selectedPrefixes: Set<string>;
    onSelectionChange: (prefixes: Set<string>) => void;
    isLoading: boolean;
};
declare const IconSetFilterPanel: import("react").MemoExoticComponent<({ collections, selectedPrefixes, onSelectionChange, isLoading }: IconSetFilterPanelProps) => import("react/jsx-runtime").JSX.Element>;
export default IconSetFilterPanel;
