import { ListItemProps } from '../../ListItem'; import { FileWithStatus } from '../types'; export interface FileItemProps extends ListItemProps { icon: React.ReactNode; file: FileWithStatus; showRemoveConfirmation: boolean; onShowRemoveConfirmation: () => void; onRemove: () => void; onCancel: () => void; } export declare const FileItem: (props: FileItemProps) => import("react/jsx-runtime").JSX.Element;