import { type PropType } from "vue"; import { type UploadFile } from "ant-design-vue"; interface IFetchUploadResult { url: string; id: string | number; } declare type FetchUploadUrlFn = (file: UploadFile) => Promise | IFetchUploadResult; declare const _sfc_main: import("vue").DefineComponent<{ acceptSuffix: { type: PropType; default: () => string[]; }; maxSize: { type: NumberConstructor; default: number; }; fetchUploadUrl: { type: PropType; required: true; }; checkFile: { type: FunctionConstructor; }; notification: { type: PropType; default: boolean; }; }, { fileList: import("vue").Ref; onBeforeUpload: (file: UploadFile) => string | true; onCustomRequest: (action: any) => Promise; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly; default: () => string[]; }; maxSize: { type: NumberConstructor; default: number; }; fetchUploadUrl: { type: PropType; required: true; }; checkFile: { type: FunctionConstructor; }; notification: { type: PropType; default: boolean; }; }>>, { acceptSuffix: string[]; maxSize: number; notification: boolean; }>; export default _sfc_main;