import { type UploadFile } from 'antd'; import React from 'react'; export declare const getExtension: (filename: string) => string; export declare const getFileType: (filename: string) => "img" | "other" | "pdf" | "video" | "xls" | "xlsx" | "doc" | "docx"; export declare const FileIcon: (props: { file?: UploadFile; }) => React.JSX.Element;