import { ShapeColor } from '../../../core/types/color-palette.js'; import { SeriesMetadata } from '../../types/histogram.js'; /** * Given a key, color token and colored histogram series, the bar color will be returned. * * @param key - Color key * @param color - Color token * @param highlightedSeriesIds - The highlighted colored histogram series array * @returns The shape color */ export declare const getBarStyle: (seriesMetadata: SeriesMetadata, highlightedSeriesIds?: string[]) => ShapeColor;