/// import type { CommonFormPropsType } from '../types'; import type { CommonPropsType } from '../../../types'; /** * H5端 */ export declare function ImageUploaderH5({ title: label, maxUploadCount, maxSize, acceptTypes, className, id, events, layout: _layout, defaultValue, single, disabled, requiredFlag, labelVisible, onChange, style, imgTypeCls, readOnly, }: H5UploaderProps): JSX.Element; export interface SingleImageProps { src: string; deleteBySrc: (url: string) => void; disabled: boolean; imgTypeCls?: string; } export interface H5UploaderProps extends CommonFormPropsType, CommonPropsType { title?: string; imgTypeCls?: string; maxSize?: number; acceptTypes?: Readonly; maxUploadCount?: number; defaultValue?: string[] | string; single?: boolean; onChange?: (v: any) => void; readOnly?: boolean; }