import { BarChartTranslations } from './shared/translations'; import { BarChartStyles, MaxScaleValue } from './shared/types'; export interface BarChartContextProps { maxScaleValue: MaxScaleValue; scaleInterval: number; unit: string; styleConfig: Required; animate: boolean; widestCategoryLabelWidth: number | null; setWidestCategoryLabelWidth: (width: number) => void; widestTotalValueLabelWidth: number | null; setWidestTotalValueLabelWidth: (width: number) => void; isMeasuring: boolean; translations: BarChartTranslations; } export declare const defaultStyleConfig: Required; export declare const BarChartContext: import("react").Context; export declare const BarChartProvider: import("react").Provider;