import React from 'react'; export interface ImageType { dataURL?: string; file?: File; [key: string]: any; } export declare type ImageListType = Array; export interface ImageUploadingPropsType { value: ImageListType; onChange: (value: ImageListType, addUpdatedIndex?: Array) => void; children?: (props: ExportInterface) => React.ReactNode; multiple?: boolean; maxNumber?: number; acceptType?: Array; maxFileSize?: number; resolutionWidth?: number; resolutionHeight?: number; resolutionType?: ResolutionType; onError?: (errors: ErrorsType, files?: ImageListType) => void; dataURLKey?: string; inputProps?: React.HTMLProps; allowNonImageType?: boolean; } export interface ExportInterface { imageList: ImageListType; onImageUpload: () => void; onImageRemoveAll: () => void; errors: ErrorsType; onImageUpdate: (index: number) => void; onImageRemove: (index: number) => void; isDragging: boolean; dragProps: { onDrop: (e: any) => void; onDragEnter: (e: any) => void; onDragLeave: (e: any) => void; onDragOver: (e: any) => void; onDragStart: (e: any) => void; }; } export declare type ErrorsType = { maxFileSize?: boolean; maxNumber?: boolean; acceptType?: boolean; resolution?: boolean; } | null; export declare type ResolutionType = 'absolute' | 'less' | 'more' | 'ratio';