import type { FunctionComponent } from 'react'; import type { ForwardProps } from '../../types'; import { type ComboBoxProps } from '../ComboBox'; import { type IconProps } from '../Icon'; import type { MenuProps } from '../Menu'; export interface IconPickerProps extends Pick, Pick { /** Callback fired when input loses focus. */ onBlur?: (iconName: string) => void; /** Current selection for the input. */ currentSelection: string; /** Callback fired when user chooses icon from the list of icons. */ onSelect: (iconName: string) => void; /** * The set of icons to pick from. * @default 'budicon' */ set?: IconProps['set']; } declare const IconPicker: FunctionComponent; export default IconPicker; //# sourceMappingURL=IconPicker.d.ts.map