1 | import * as React from 'react';
|
2 | import type { UploadRef } from './Upload';
|
3 | import type { UploadProps } from './interface';
|
4 | export type DraggerProps = UploadProps & {
|
5 | height?: number;
|
6 | };
|
7 | declare const Dragger: React.ForwardRefExoticComponent<UploadProps<any> & {
|
8 | height?: number | undefined;
|
9 | } & React.RefAttributes<UploadRef<any>>>;
|
10 | export default Dragger;
|