import { FC, ReactNode } from 'react'; import { PLACEMENT_TYPES } from 'react-laag'; import { BrandColor } from '../foundation/colors/colors'; export type TooltipColor = BrandColor | 'white' | 'black'; export type TooltipProps = { text: ReactNode; isOpen: boolean; children: ReactNode; bgColor?: TooltipColor; placement?: (typeof PLACEMENT_TYPES)[number]; }; export declare const Tooltip: FC;