import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue'; import { YcStatusDialogProps, StatusType } from './type'; declare const _default: __VLS_WithTemplateSlots< DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { visible: boolean; status: string; title: string; content: string; confirmText: string; cancelText: string; width: string; showCancel: boolean; }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { confirm: () => void; cancel: () => void; "update:visible": (value: boolean) => void; }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { visible: boolean; status: string; title: string; content: string; confirmText: string; cancelText: string; width: string; showCancel: boolean; }>>> & { "onUpdate:visible"?: ((value: boolean) => any) | undefined; onCancel?: (() => any) | undefined; onConfirm?: (() => any) | undefined; }, { content: string; title: string; width: string | number; visible: boolean; status: StatusType; cancelText: string; confirmText: string; showCancel: boolean; }, {}>, { default?(_: {}): any; footer?(_: {}): 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; }; };