import { Tags } from 'hot-shots';
import { BaseCollector } from './base.collector';
export declare class HistogramCollector extends BaseCollector {
    /**
     * Record value of histogram by the input. Inputs can be negative.
     * @param value
     * @param tags
     */
    record(value: number, tags?: Tags): void;
}
