import React from 'react'; import { CustomIconOptions } from 'antd/lib/icon/IconFont'; import { IconComponent, IconProps } from './Icon'; import { WithEditInProps } from '../with-edit'; declare const defaultprops: { perfix: string; value: string; }; declare type PropExtend = U & { [K in Exclude]?: T[K]; }; declare type BasicProps = PropExtend>; declare type IconSelectorProps = PropExtend, BasicProps>; interface IconSelectorCmp { (props: IconSelectorProps): React.ReactElement; updateFromIconfontCN: (config: CustomIconOptions) => void; Ant: IconComponent; } declare const IconSelector: IconSelectorCmp; export default IconSelector; export { IconSelector };