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