import { FileInputListProps } from 'uiw';
interface FileInputProps extends Omit<FileInputListProps, 'uploadType'> {
    uploadType?: 'card' | 'picture' | 'text';
}
declare const Upload: ({ uploadType, value, readonly, maxNumber, ...others }: FileInputProps) => JSX.Element;
export default Upload;
