///
import React from 'react';
import { ImagePickerPropTypes as BasePropsType } from './PropsType';
export interface ImagePickerPropTypes extends BasePropsType {
prefixCls?: string;
className?: string;
}
export default class ImagePicker extends React.Component {
static defaultProps: {
prefixCls: string;
files: never[];
onChange: () => void;
onImageClick: () => void;
onAddImageClick: () => void;
onFail: () => void;
selectable: boolean;
};
fileSelectorInput: any;
getOrientation: (file: any, callback: any) => void;
getRotation: (orientation?: number) => number;
removeImage: (index: any) => void;
addImage: (imgItem: any) => void;
onImageClick: (index: any) => void;
onFileChange: () => void;
render(): JSX.Element;
}