1 |
|
2 | import Dragger from './Dragger';
|
3 | import type { UploadProps } from './Upload';
|
4 | import InternalUpload from './Upload';
|
5 | export type { DraggerProps } from './Dragger';
|
6 | export type { RcFile, UploadChangeParam, UploadFile, UploadListProps, UploadProps, } from './interface';
|
7 | type InternalUploadType = typeof InternalUpload;
|
8 | type CompoundedComponent<T = any> = InternalUploadType & {
|
9 | <U extends T>(props: React.PropsWithChildren<UploadProps<U>> & React.RefAttributes<any>): React.ReactElement;
|
10 | Dragger: typeof Dragger;
|
11 | LIST_IGNORE: string;
|
12 | };
|
13 | declare const Upload: CompoundedComponent<any>;
|
14 | export default Upload;
|