/** calculated human-friendly scale for rendering axes */ export interface RangeScale { scale: number; step: number; count: number; min: number; max: number; } /** * making this a little more generic so we can use it outside of charts. * specifically, for the sheet "histogram table" function. for that, we * do need to ensure that the count is not greater than our request. * * we have a new parameter for that, default behavior should not change. */ export declare const Scale: (min: number, max: number, count?: number, limit_count?: boolean, discrete?: boolean) => RangeScale;