import type { Ref } from 'vue'; import type { MergedTheme } from '../../_mixins'; import type { PopoverInst } from '../../popover'; import type { PopconfirmTheme } from '../styles'; import type { PopconfirmSetupProps } from './Popconfirm'; export type PopconfirmInst = PopoverInst; export interface PopconfirmInjection { mergedThemeRef: Ref>; mergedClsPrefixRef: Ref; props: PopconfirmSetupProps; } export declare const popconfirmInjectionKey: import("vue").InjectionKey;