import React from 'react';
import { TMethod } from '@onesy/models';
import { IChart, IChartValueValues } from '../Chart/Chart';
export declare type IColumnChartItem = IChart & {
    name?: string;
    refs?: {
        wrapper?: HTMLElement;
        defs?: HTMLElement;
    };
    rects?: {
        wrapper?: DOMRect;
        svg?: DOMRect;
    };
    values?: IChartValueValues;
    width?: number;
    updateDefs?: TMethod;
    updateLegend?: TMethod;
    BackgroundProps?: any;
    BorderProps?: any;
};
declare const ColumnChartItem: React.FC<IColumnChartItem>;
export default ColumnChartItem;
