// Project: https://github.com/vueComponent/ant-design-vue // Definitions by: akki-jat // Definitions: https://github.com/vueComponent/ant-design-vue/types import { TooltipCommon } from './tootip/common'; import { VNodeChild } from 'vue'; export declare class Popover extends TooltipCommon { $props: { /** * Content of the card * @type any (string | slot | VNode) */ content?: VNodeChild | JSX.Element; /** * Title of the card * @type any (string | slot | VNode) */ title?: VNodeChild | JSX.Element; } }