import { WithChildrenProp } from '../../utils'; import { TipBaseProps, TipCenterAlignment } from '../shared/types'; export type ToolTipProps = TipBaseProps & WithChildrenProp & { alignment?: TipCenterAlignment; /** * Can be used for accessibility - the same id needs to be passed to the `aria-describedby` attribute of the element that the tooltip is describing. */ id?: string; }; export declare const ToolTip: React.FC;