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