import type { BubbleInstance } from '../layout/Bubble'; import type { DirectionAdt } from '../layout/Direction'; import type { BoundsRestriction } from '../layout/LayoutBounds'; import type { Placement } from '../layout/Placement'; export interface SpotInfo { readonly x: number; readonly y: number; readonly bubble: BubbleInstance; readonly direction: DirectionAdt; readonly label: string; readonly restriction: BoundsRestriction; readonly placement: Placement; readonly alwaysFit: boolean; } declare const nu: (x: number, y: number, bubble: BubbleInstance, direction: DirectionAdt, placement: Placement, boundsRestriction: BoundsRestriction, labelPrefix: string, alwaysFit?: boolean) => SpotInfo; export { nu }; //# sourceMappingURL=SpotInfo.d.ts.map