/// import { AttachmentValue } from "@easyv/dtable-types/output/Cell"; interface Props { onRemove: () => void; onViewFile: () => void; disabled?: boolean; file: AttachmentValue[0]; } declare function Item({ disabled, file, onViewFile, onRemove }: Props): JSX.Element; export default Item;