import * as React from 'react'; import type { UploadProps } from './interface'; import type { UploadRef } from './Upload'; export type DraggerProps = UploadProps & { height?: number; }; type DraggerType = ((props: DraggerProps & React.RefAttributes>) => React.ReactElement | null) & { displayName?: string; }; declare const Dragger: DraggerType; export default Dragger;