import { CartesianAxes, PolarAxes } from '../index.js';
import { Chart, SymbolOptions } from './chart.js';
export declare class ChartText extends Chart {
    symbol: SymbolOptions;
    constructor(data: any, options: any);
    plotterCartesian(axis: CartesianAxes, axisIndex: any): void;
    plotterPolar(axis: PolarAxes, dataKeys: any): void;
    drawLegendSymbol(legendId?: string, asSvgElement?: boolean): SVGSVGElement | SVGTextElement;
}
