import React from 'react'; type ObsType = { api: string; bucket: string; }; type UploadType = { fileList: []; accept: ".doc" | ".docx" | "application/msword" | "application/vnd" | ".openxmlformats-officedocument.wordprocessingml.document" | "audio/*" | "video/*" | "image/*" | ".pdf" | "*"; maxSize: number; limit: number; type: "button" | "image" | "dragger"; message?: string; beforeUpload?: Function; afterUpload?: Function; remove?: Function; }; export type GrtUploadType = { obsSetting: ObsType; uploadSetting: UploadType; [name: string]: any; }; declare const ObsUpload: React.FC; export default ObsUpload;