import React from 'react'; import type { IconList } from '../type'; type UnknownIconProps = { size?: 'small' | 'middle' | 'large'; value: string; iconList: IconList; onChange: (val: string) => void; }; declare const UnknownIcon: (props: UnknownIconProps) => React.ReactElement>; export default UnknownIcon;