import { ReactNode } from 'react'; import { FlexProps } from '../Flex/Flex.types'; export interface TooltipProps extends FlexProps { label: string; placement?: 'top' | 'bottom' | 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'right' | 'left'; icon?: ReactNode; containerWidth?: string; children?: ReactNode; }