import { FunctionComponent } from 'react'; import { CustomIcon } from '../../types'; export interface IconSelectorProps { customIcons?: CustomIcon[]; value?: string; onChange: (iconName: string) => void; clearable?: boolean; } export declare const IconSelector: FunctionComponent;