import React from 'react'; import { LabelSize } from "../../../_private/components/BarChart/index"; import { SectionItem } from "../../../_private/components/BarChart/components/Column/index"; import { FormatValue } from "../../../_private/types"; import { Align } from "../../index"; declare type Props = { group: string; total: number; sections: readonly SectionItem[] | undefined; showValues: boolean; isHorizontal: boolean; align: Align; formatValueForLabel?: FormatValue; onChangeLabelSize?: (size: LabelSize) => void; }; export declare const Column: React.ForwardRefExoticComponent>; export {};