import React from "react";
import UppyType from "../definitions/UppyType";
interface UppyErrorProps {
uppy: UppyType;
error?: string;
}
declare const UppyError: ({ uppy, error }: UppyErrorProps) => React.JSX.Element | null;
export default UppyError;
export { UppyErrorProps };