import { IScale } from "../types";
/**
 * Simple utility function that checks if given 'px' value is within the interval of the range of given scale
 *
 * @param scale
 * @param px
 */
export declare function isInRange(scale: IScale<any>, px: number): boolean;
