/** * Copyright (c) 2018-2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ export interface Histogram { min: number; max: number; binWidth: number; counts: Int32Array; } export declare function calculateHistogram(data: ArrayLike, binCount: number, options?: { min: number; max: number; }): Histogram;