import { default as React } from 'react'; import { FileWithPath } from 'react-dropzone'; export interface ItemPreviewProps { file: FileWithPath; onRemoveFile: (file: FileWithPath) => void; removeAriaLabel?: string; className?: string; theme?: 'default' | 'failed'; } declare function ItemPreview({ file, onRemoveFile, removeAriaLabel, className, theme, }: ItemPreviewProps): import("react/jsx-runtime").JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;