import type { IAreaChartSpec } from './interface'; import { AreaChartSpecTransformer } from './area-transformer'; import { BaseChart } from '../base'; export declare class AreaChart extends BaseChart { static readonly type: string; static readonly seriesType: string; static readonly transformerConstructor: typeof AreaChartSpecTransformer; readonly transformerConstructor: typeof AreaChartSpecTransformer; readonly type: string; readonly seriesType: string; protected _setModelOption(): void; } export declare const registerAreaChart: () => void;