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