import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue'; import { BatchUploadRecord } from './types'; interface Props { /** 上传记录列表 */ records?: BatchUploadRecord[]; /** 图标 CDN 基础路径 */ iconBaseUrl?: string; } declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { records: () => never[]; iconBaseUrl: string; }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { pause: (id: string) => void; resume: (id: string) => void; cancel: (id: string) => void; }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { records: () => never[]; iconBaseUrl: string; }>>> & { onPause?: ((id: string) => any) | undefined; onCancel?: ((id: string) => any) | undefined; onResume?: ((id: string) => any) | undefined; }, { records: BatchUploadRecord[]; iconBaseUrl: string; }, {}>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: PropType<__VLS_NonUndefinedable>; } : { type: PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {};