import './video-uploader.less'; import type { ProFormItemProps } from '@ant-design/pro-form'; import type { UploadProps } from 'antd/lib/upload'; import type { UploadFile } from 'antd/lib/upload/interface'; import type { FC } from 'react'; import React from 'react'; declare type ResponseFormatter = (response: any, file: UploadFile, data: any) => any; export interface VideoUploaderProps extends ProFormItemProps { width?: number; action?: UploadProps['action']; accept?: UploadProps['accept']; maxSize?: number; autoTip?: boolean; formatter?: ResponseFormatter; dataApi?: string; data?: any; value?: string; onChange?: (value?: string) => void; } export declare const VideoUploader: FC; declare const _default: React.ComponentClass | React.FunctionComponent; export default _default;