import { CSSProperties } from 'react'; import { TooltipPlacement } from 'antd/es/tooltip'; type AIBPopoverContentType = { label: string; icon: string; desc: string; link: string; id: string; }; export declare const AIBPopover: ({ label, content, placement, overlayInnerStyle, }: { label: string; content: string[] | AIBPopoverContentType[]; placement?: TooltipPlacement | undefined; overlayInnerStyle?: CSSProperties | undefined; }) => JSX.Element; export {};