import React from "react"; import type { FileUpload } from "../InputFile"; interface ThumbnailProps { readonly compact?: boolean; readonly size: "base" | "large"; readonly file: FileUpload; /** * **Use at your own risk:** Custom classNames for specific elements. This should only be used as a * **last resort**. Using this may result in unexpected side effects. * More information in the [Customizing components Guide](https://atlantis.getjobber.com/guides/customizing-components). */ readonly UNSAFE_className?: { container?: string; }; /** * **Use at your own risk:** Custom classNames for specific elements. This should only be used as a * **last resort**. Using this may result in unexpected side effects. * More information in the [Customizing components Guide](https://atlantis.getjobber.com/guides/customizing-components). */ readonly UNSAFE_style?: { container?: React.CSSProperties; }; } export declare function Thumbnail({ compact, size, file, UNSAFE_className, UNSAFE_style, }: ThumbnailProps): React.JSX.Element; export {};