import type { Point } from '../../../types/point.js'; export interface SelectionState { selectionPercentage?: [number, number]; end: { relative: Point; }; } export interface ChartBounds { left: number; top: number; width: number; height: number; } /** * Calculates the position for the selection area tooltip. * * @param selectState - The current selection state * @param chartBounds - The chart bounds including position and dimensions * @returns The absolute position for the tooltip */ export declare const getSelectionTooltipPosition: (selectState: SelectionState, chartBounds: ChartBounds) => Point;