import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue'; export interface PlusPopoverProps { hasShowBottomButton?: boolean; confirmLoading?: boolean; cancelText?: string; resetText?: string; confirmText?: string; /** * 是否显示取消或重置按钮, true为显示取消按钮, false为显示重置按钮 */ cancelOrReset?: boolean; } export interface PlusPopoverEmits { (e: 'cancel'): void; (e: 'confirm'): void; (e: 'reset'): void; } declare function __VLS_template(): { default?(_: {}): any; "bottom-button"?(_: {}): any; reference?(_: {}): any; }; declare const __VLS_component: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { hasShowBottomButton: boolean; confirmLoading: boolean; resetText: string; confirmText: string; visible: boolean; cancelOrReset: boolean; }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { cancel: () => void; confirm: () => void; reset: () => void; }, string, PublicProps, Readonly< ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { hasShowBottomButton: boolean; confirmLoading: boolean; resetText: string; confirmText: string; visible: boolean; cancelOrReset: boolean; }>>> & { onReset?: (() => any) | undefined; onCancel?: (() => any) | undefined; onConfirm?: (() => any) | undefined; }, { resetText: string; confirmText: string; confirmLoading: boolean; hasShowBottomButton: boolean; cancelOrReset: boolean; }, {}>; declare const _default: __VLS_WithTemplateSlots>; 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; }; };