import { TMetric, TSort } from '../../../types/chart'; import { TData } from './types'; /** * Generates the tooltip for an explore bar chart. * * @param {Array} series - An array of parameters. * @returns {string} The generated tooltip HTML. */ export declare const getExploreBarChartTooltip: (series: any, metrics: TMetric[]) => string; export declare const buildDataset: ({ versions, dimensions, startRow, barsPerDimension }: TData, sort: TSort) => any[]; export declare const buildSeries: (data: TData, barItemStyles: Record[]) => any;