import { TimeSerie, Options } from '@chartwerk/core'; export declare type BarSerieParams = { matchedKey: string; colorFormatter: (serie: BarTimeSerie) => string; }; export declare type BarTimeSerie = TimeSerie & Partial; export declare type BarOptionsParams = { renderBarLabels: boolean; stacked: boolean; barWidth: number; maxBarWidth: number; minBarWidth: number; matching: boolean; opacityFormatter: (data: RowValues) => number; }; export declare type BarOptions = Options & Partial; export declare type RowValues = { key: number; values: number[]; additionalValues: (null | number)[]; colors: string[]; };