import * as React from "react"; interface ImageFile { url: string; [key: string]: any; } export interface ImagePickerPropTypes { style?: React.CSSProperties; files?: Array; onChange?: (files: Array, operationType: string, index?: number) => void; onImageClick?: (index?: number, files?: Array) => void; onAddImageClick?: (e: React.MouseEvent) => void; onFail?: (msg: string) => void; selectable?: boolean; multiple?: boolean; accept?: string; length?: number | string; capture?: any; disableDelete?: boolean; } export {};