import { Theme } from '@mui/material'; import { CursorCoordinates, CursorData } from './tooltip-model'; /** * Determine position of tooltip depending on chart dimensions and the number of focused series */ export declare function assembleTransform(mousePos: CursorData['coords'], pinnedPos: CursorCoordinates | null, tooltipHeight: number, tooltipWidth: number, containerElement?: Element | null): string | undefined; /** * Helper for tooltip positioning styles */ export declare function getTooltipStyles(theme: Theme, pinnedPos: CursorCoordinates | null, maxHeight?: number): Record; //# sourceMappingURL=utils.d.ts.map