import React from 'react'; import { InternalPosition, PopoverProps } from './interfaces'; export interface PopoverContainerProps { /** References the element the container is positioned against. */ trackRef: React.RefObject; /** Used to update the container position in case track or track position changes: const trackRef = useRef(null) return (<> ) */ trackKey?: string | number; position: PopoverProps.Position; zIndex?: React.CSSProperties['zIndex']; arrow: (position: InternalPosition | null) => React.ReactNode; children: React.ReactNode; renderWithPortal?: boolean; } export default function PopoverContainer({ position, trackRef, trackKey, arrow, children, zIndex, renderWithPortal, }: PopoverContainerProps): JSX.Element; //# sourceMappingURL=container.d.ts.map