import '@uppy/core/dist/style.css';
import '@uppy/dashboard/dist/style.css';
import { FunctionComponent } from 'react';
interface IProps {
    className?: string;
    title?: string;
    subTitle?: string;
    buttonsArray?: any[];
    fileKey: string;
    maxFileSize?: number;
    allowedFileTypes?: string[];
    onComplete: () => void;
    handleUppyUpload: (fileKey: string, file: any) => void;
    uppy: any;
    uploderDocSizeText: string;
}
declare const UppyUploader: FunctionComponent<IProps>;
export default UppyUploader;
