import React, { ReactNode } from 'react'; import { Alignment } from '../../utils/useAlignment'; export interface PopoverContentProps { /** * The position to expand the popover * * @default left */ alignment?: Alignment; /** * Whether the popover should remain open when a click outside it occurs */ persistOnOutsideClicks?: boolean; /** * @ignore */ children: ReactNode; } declare const _default: React.MemoExoticComponent>>; export default _default;