import type { Placement } from 'react-overlays/usePopper'; import type { TooltipAlignEnum, TooltipDirectionEnum } from './Tooltip.types'; export declare const PLACEMENT_TO_DIRECTION: Record; export declare const PLACEMENT_TO_ALIGNMENT: Record; export declare const TOOLTIP_VARIANT_MAP: { readonly 'Top-Center': "center-top"; readonly 'Top-Start': "start-top"; readonly 'Top-End': "end-top"; readonly 'Bottom-Center': "center-bottom"; readonly 'Bottom-Start': "start-bottom"; readonly 'Bottom-End': "end-bottom"; readonly 'Left-Center': "center-left"; readonly 'Left-Start': "start-left"; readonly 'Left-End': "end-left"; readonly 'Right-Center': "center-right"; readonly 'Right-Start': "start-right"; readonly 'Right-End': "end-right"; }; export declare const getPlacement: (direction?: TooltipDirectionEnum, alignment?: TooltipAlignEnum) => Placement;