import React from 'react'; import type { ReactNode } from 'react'; export type PopoverContainerProps = { /** * CSS class names that can be appended to the component. */ className?: string; /** * Child node(s) that can be nested inside component. */ children: ReactNode; }; export declare const PopoverContainer: React.ForwardRefExoticComponent>;