import React, { SyntheticEvent } from "react"; interface ImagesListFile { id: string; src: string; name?: string; } interface FileProps { file: ImagesListFile; selected?: boolean; uploadFile?: () => void; onSelect?: (e: SyntheticEvent) => void; onClick?: (e: SyntheticEvent) => void; onRemove?: (e: SyntheticEvent) => void; options?: Array<{ label: string; onClick: (file: any) => void; }>; } declare const File: (props: FileProps) => React.JSX.Element; export default File;