import { Component } from 'react';
import './style.less';
interface AntdIconSetterProps {
    value: string;
    type: string;
    defaultValue: string;
    placeholder: string;
    hasClear: boolean;
    onChange: (icon: string | object) => undefined;
}
export default class extends Component<AntdIconSetterProps> {
    render(): JSX.Element;
}
export {};
