import { FC } from 'react'; import { File } from '../../../types'; declare const CardFile: FC<{ data: File[]; onClickDelete?: (e: React.MouseEvent, file: File) => void; onClickDownload?: (file: File) => void; readonly?: boolean; downloadWithAxios?: boolean; }>; export default CardFile;