import { ScaleBand } from '../../types'; /** * Given a value in the range of a scale, find the nearest domain. * @param scale * This method only supports `ScaleBand`. * @param value * The value in the range. * @returns * The nearest domain and associated range. */ export declare function stickyBandScale(scale: ScaleBand, value: number): { domain: Meta; value: number; };