/// import { ResponsiveContainerProps } from 'recharts'; interface GroupedData { [key: string]: unknown; catchCount: number; } export interface IHistogramProps extends Omit { data: GroupedData[]; xAxisDataType: string; xAxisLabel: string; hideLabels?: boolean; } export declare const Histogram: ({ data, xAxisDataType, xAxisLabel, width, height, hideLabels, ...rest }: IHistogramProps) => JSX.Element; export {};