import React from 'react'; import { PopoverProps } from '../../../popover/interfaces'; export interface ChartPopoverProps extends PopoverProps { /** Title of the popover */ title?: React.ReactNode; /** 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; /** Optional container element that prevents any clicks in there from dismissing the popover */ container: Element | null; /** Event that is fired when the popover is dismissed */ onDismiss: (outsideClick?: boolean) => void; /** Popover content */ children?: React.ReactNode; } export default function ChartPopover({ position, size, fixedWidth, dismissButton, dismissAriaLabel, children, title, trackRef, trackKey, onDismiss, container, ...restProps }: ChartPopoverProps): JSX.Element; //# sourceMappingURL=index.d.ts.map