import "./IconPicker.scss"; import type { JSX } from "react"; type Option = { value: T; text: string; icon: JSX.Element; keyBinding: string | null; }; type PickerSection = { name: string; options: readonly Option[]; }; export declare function IconPicker({ value, label, visibleSections, hiddenSections, onChange, }: { label: string; value: T; visibleSections: readonly PickerSection[]; hiddenSections?: readonly PickerSection[]; onChange: (value: T) => void; }): import("react/jsx-runtime").JSX.Element; export {};