import type { UploadProps } from './types'; import { UploadAction } from './UploadAction'; import { UploadButton } from './UploadButton'; import { UploadList } from './UploadList'; import { UploadPicture } from './UploadPicture'; import { UploadPictureList } from './UploadPictureList'; import { UploadPreviewAction } from './UploadPreviewAction'; export declare const Upload: { (props: UploadProps): React.ReactElement | null; Button: typeof UploadButton; Action: typeof UploadAction; PreviewAction: typeof UploadPreviewAction; List: typeof UploadList; Picture: typeof UploadPicture; PictureList: typeof UploadPictureList; };