import * as d3 from 'd3'; import { OWIDBaseChart } from './OWIDBaseChart'; export declare class OWIDTrendChart extends OWIDBaseChart { scaleX: d3.ScaleLinear; scaleY: d3.ScaleLinear; axisX: d3.Axis; axisY: d3.Axis; seriesData: { name: string; data: any; }[]; constructor(data: any, options: any); setupTrendSVGElements(): void; handleMouseMove(e: any): void; handleMouseLeave(): void; getDimensionValues(dimension: string): any; calculateMarginLeft(): number; calculateMarginRight(): number; getTextWidth(text: any, fontSize: string | number, fontFace: string): number; showGridX(): void; showGridY(): void; getClosestYear(posX: number): number; render(): any; css(): string; }