import { SizingProps } from '../../shared/box'; import { ComponentChildren } from '../../shared/children'; import { ToggleEventProps } from '../../shared/events'; import { GlobalProps } from '../../shared/global'; import { BaseOverlayProps } from '../../shared/overlay'; export interface PopoverProps extends GlobalProps, BaseOverlayProps, ToggleEventProps, SizingProps { /** * The content of the popover. */ children?: ComponentChildren; }