import React from 'react'; export interface UploadImageProps { maxLength: number; axiosDataSource: any; disabled: boolean; kbSize: number; onChange?: (value: any) => void; value?: any; } declare const UploadImage: React.FC; export default UploadImage;