interface IData { from: number; to: number; value: number; } interface IProps { height: number; colour: string; timeFormat: (timestamp: number) => string; data: IData[]; xAxisTicksRotate?: boolean; xAxisTicksTooltip?: boolean; xAxisTicksTooltipFormat?: (from: string, to: string, index: number) => string; xAxisLabel?: string; yAxisLabel?: string; keyFormat?: (value: string, index: number) => string; isAnimationActive?: boolean; width?: number; } declare const Histogram: ({ height, data, colour, timeFormat, xAxisTicksRotate, xAxisTicksTooltip, xAxisTicksTooltipFormat, xAxisLabel, yAxisLabel, keyFormat, isAnimationActive, width }: IProps) => JSX.Element; export default Histogram;