/// <reference types="react" />
export interface Props {
    config: {
        labeling: {
            prefix?: string;
            autofit?: true;
            showValues?: boolean;
        };
    };
    data: Array<{
        color?: string;
        value: number;
        name: string;
    }>;
    height: string;
}
declare const _default: (props: Props) => JSX.Element;
export default _default;
