import React from 'react'; import { UploadProps } from 'antd'; declare type UploadValue = { kmVideoName: string; kmVideoUrl: string; kmVideoType?: string; }[]; export interface ApaasUploadProps extends Omit { maxCount?: number; maxSize?: number; uploadText?: string; disabled?: boolean; onChange?: (value: UploadValue) => void; value?: UploadValue; hostUrl?: string; actionUrl?: string; canDownload?: boolean; } declare const KmVideo: ({ maxCount, maxSize, onChange, value, disabled, hostUrl, canDownload, actionUrl, ...resetProps }: ApaasUploadProps) => React.JSX.Element; export default KmVideo;