import { CartesianAxes, PolarAxes } from '../index.js';
import { Chart } from './chart.js';
export declare class ChartDirection extends Chart {
    private previousData;
    constructor(data: any, options: any);
    plotterCartesian(axis: CartesianAxes, axisIndex: any): void;
    plotterPolar(axis: PolarAxes, dataKeys: any): void;
    drawLegendSymbol(legendId?: string, asSvgElement?: boolean): SVGGElement;
}
