import { default as React } from 'react'; import { SvgData } from '../utils'; interface IconSelectorProps { label: string; svgData: SvgData | null; onUpdateImage: () => void; span?: number; dataHook?: string; } declare const IconSelector: React.FC; export default IconSelector;