import type { FC } from 'react'; import './index.less'; interface IconProps { searchKey?: string; type: string; searchData?: any; resetSearch: () => void; } declare const Icon: FC; export default Icon;