import type { ILinearProgressChartSpec } from './interface'; import { LinearProgressChartSpecTransformer } from './linear-progress-transformer'; import { BaseChart } from '../../base'; export declare class LinearProgressChart extends BaseChart { static readonly type: string; static readonly seriesType: string; static readonly transformerConstructor: typeof LinearProgressChartSpecTransformer; readonly transformerConstructor: typeof LinearProgressChartSpecTransformer; readonly type: string; readonly seriesType: string; protected _setModelOption(): void; } export declare const registerLinearProgressChart: () => void;