import type { IRangeAreaChartSpec } from './interface'; import { RangeAreaChartSpecTransformer } from './range-area-transformer'; import { BaseChart } from '../base'; export declare class RangeAreaChart extends BaseChart { static readonly type: string; static readonly seriesType: string; static readonly transformerConstructor: typeof RangeAreaChartSpecTransformer; readonly transformerConstructor: typeof RangeAreaChartSpecTransformer; readonly type: string; readonly seriesType: string; protected _setModelOption(): void; } export declare const registerRangeAreaChart: () => void;