import type { FC } from 'react'; import './style/file-icon.less'; type Props = { type: string; onDownloadClick?: () => void; disabledDownload?: boolean; }; declare const FileIcon: FC; export default FileIcon;