import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue'; import { YcDownloadDialogProps } from './type'; declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { title: string; modelValue: boolean; templateText: string; uploadAction: string; }>, { fetchUploadRecords: () => Promise; }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (value: boolean) => void; "upload-success": (response: any, file: any) => void; "upload-error": (error: any, file: any) => void; "download-template": () => void; }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { title: string; modelValue: boolean; templateText: string; uploadAction: string; }>>> & { "onUpdate:modelValue"?: ((value: boolean) => any) | undefined; "onUpload-success"?: ((response: any, file: any) => any) | undefined; "onUpload-error"?: ((error: any, file: any) => any) | undefined; "onDownload-template"?: (() => any) | undefined; }, { title: string; modelValue: boolean; templateText: string; uploadAction: string; }, {}>, { "download-icon"?(_: {}): any; "upload-icon"?(_: {}): any; }>; 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]; } & {}; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };