import React from "react"; import type { FileUpload } from "../InputFile"; interface InternalThumbnailImageProps { 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 InternalThumbnailImage({ file, UNSAFE_className, UNSAFE_style, }: InternalThumbnailImageProps): React.JSX.Element; export {};