import React from "react"; import type { FileItemFormatted } from "../../../../../FilePicker/index.js"; import type { RichItemPreviewProps } from "../../../../../FilePicker/primitives/components/index.js"; type RichItemThumbnailProps = Omit, "children"> & FileItemFormatted & { preview?: RichItemPreviewProps["preview"]; disabled?: boolean; /** * `tile` is the fixed square that sits beside the file details; `banner` spans the full * width of a stacked layout, where the panel is too narrow to afford a column for it. */ variant?: "tile" | "banner"; }; declare const RichItemThumbnail: ({ url, name, className, mimeType, preview, disabled, variant }: RichItemThumbnailProps) => React.JSX.Element; export { RichItemThumbnail, type RichItemThumbnailProps };