import { UploadProps, RcFile } from 'antd/es/upload'; import { FC, IglooComponentProps } from '../types'; import './style'; export interface IglooUploadProps extends UploadProps, IglooComponentProps { placeholder?: string; handleUpload?(file: RcFile): PromiseLike; value?: string[]; onChange?: (value: any) => void; limit?: number; limitErrorMessage?: Function | string; containerRef?: any; descriptions?: any; bizKey?: string; } declare const IglooUpload: FC; export default IglooUpload;