///
import type { CommonFormPropsType } from '../types';
export declare const FILES_TYPES: string[];
export declare function UploadFileH5({ layout, id, style, labelVisible, label, requiredFlag, disabled, className, acceptTypes, tips, btnTitle, maxUploadCount, maxSize, deleteVisible, downloadVisible, value, // 需要兼容 cloud:和https: 协议,需要兼容字符串和字符串数组
events, defaultValue, uploadPath, single, onChange, isEdit, $node, readOnly, }: IUploadFileH5): JSX.Element;
export interface IUploadFileH5 extends CommonFormPropsType {
className?: string;
label?: string;
tips?: string;
btnTitle?: string;
maxUploadCount?: number;
deleteVisible?: boolean;
downloadVisible?: boolean;
acceptTypes?: Readonly;
disabled?: boolean;
defaultValue?: string | string[];
maxSize?: number;
value?: Readonly;
uploadPath?: string;
single?: boolean;
onChange?: (v: any) => void;
isEdit: boolean;
readOnly?: boolean;
}