import { FC } from 'react'; import './index.less'; interface RefreshIconProps { visible?: boolean; title?: string; onRefresh: () => void; className?: string; } declare const RefreshIcon: FC; export default RefreshIcon;