import { ScaleValue, TicksSpec, AnyScale, ScaleWithBandwidth } from './types'; /** * Band and point scales are not centered, meaning the ticks would * be positioned at the beginning of each step; however, we want * them to be centered for each step. */ export declare const centerScale: (scale: ScaleWithBandwidth) => ScaleWithBandwidth | ((d: T) => number); export declare const getScaleTicks: (scale: AnyScale, spec?: TicksSpec) => any[]; //# sourceMappingURL=ticks.d.ts.map