import React from "react"; import type { FileItemFormatted } from "../../../../../FilePicker/index.js"; type ThumbnailProps = Pick & { fit: "cover" | "contain"; }; /** * The file's own image. `cover` fills its box and crops what does not fit, which suits the small * square tile; `contain` shows the whole picture, which suits the banner. */ declare const Thumbnail: ({ url, name, fit }: ThumbnailProps) => React.JSX.Element; export { Thumbnail, type ThumbnailProps };