import '@vtmn/css-popover/dist/index-with-vars.css'; import * as React from 'react'; import { VtmnPopoverPosition } from './types'; export interface VtmnPopoverProps extends React.ComponentPropsWithoutRef<'div'> { /** * ID of the popover * @type {string} */ identifier: string; /** * The position of the popover. * @defaultValue 'top' */ position?: VtmnPopoverPosition; /** * The title of the popover. */ title?: string; /** * The text of the popover. */ body?: string; } export declare const VtmnPopover: ({ identifier, position, title, body, children, ...props }: VtmnPopoverProps) => JSX.Element; declare const MemoVtmnPopover: React.MemoExoticComponent<({ identifier, position, title, body, children, ...props }: VtmnPopoverProps) => JSX.Element>; export default MemoVtmnPopover;