import React from "react";
import { UppyDragDropProps } from "./UppyDragDrop";
interface UppyDragDropThumbnailProps extends UppyDragDropProps {
    height?: number;
    path: string;
    label?: React.ReactNode;
    hasError: boolean;
    help?: React.ReactNode;
    required: boolean;
    disabled: boolean;
}
declare const UppyDragDropThumbnail: ({ height, path, label, hasError, help, required, disabled, uppy, ...props }: UppyDragDropThumbnailProps) => React.JSX.Element;
export default UppyDragDropThumbnail;
export { UppyDragDropThumbnailProps };
