import { Boundary, DirectionX, DirectionY, NumberRange, ScaleLinear } from "../../index"; export declare const getBoundaries: ({ boundaries, domain, color, }: { boundaries: readonly Boundary[]; domain: NumberRange; color: string; }) => readonly Boundary[]; export declare const getOffsets: ({ values, scale, chartSize, isHorizontal, directionX, directionY, }: { values: Boundary['value']; scale: ScaleLinear; chartSize: number; directionX: DirectionX; directionY: DirectionY; isHorizontal: boolean; }) => number[];