import { BoxProps, StackProps } from '@mui/material'; import { DownloadButtonProps } from './DownloadButton'; import { RemoveButtonProps } from './RemoveButton'; export interface FileThumbnailProps extends StackProps<'span'> { file: File; tooltip?: boolean; onRemove?: () => void; onDownload?: () => void; imageView?: boolean; slotProps?: { img?: Omit, 'src'>; icon?: BoxProps<'svg'>; removeButton?: Omit; downloadButton?: Omit; }; } export default function FileThumbnail(inProps: FileThumbnailProps): import("react/jsx-runtime").JSX.Element; declare module '@mui/material' { interface Components { ReevolveFileThumbnail?: { defaultProps?: Partial; }; } } //# sourceMappingURL=FileThumbnail.d.ts.map