/** * @license EUPL-1.2+ * Copyright Gemeente Amsterdam */ import type { HTMLAttributes } from 'react'; export type FileListItemProps = { /** The file to display. Shows its name, type, and size, and a thumbnail for images. */ readonly file: File; /** A function to run when the user removes the file. Adds a delete button. */ readonly onDelete?: () => void; } & Readonly>; /** * Represents a single uploaded file within a File List, with its details and an optional delete action. * * @see {@link https://designsystem.amsterdam/?path=/docs/components-forms-file-list--docs File List docs at Amsterdam Design System} */ export declare const FileListItem: import("react").ForwardRefExoticComponent<{ /** The file to display. Shows its name, type, and size, and a thumbnail for images. */ readonly file: File; /** A function to run when the user removes the file. Adds a delete button. */ readonly onDelete?: () => void; } & Readonly> & import("react").RefAttributes>;