import { BaseChart } from '@visactor/vchart'; import type { ICombinationCandlestickChartSpec } from './interface'; import { CombinationCandlestickChartSpecTransformer } from './combination-candlestick-transformer'; export declare class CombinationCandlestickChart extends BaseChart { static readonly type: string; readonly type: string; _spec: ICombinationCandlestickChartSpec; static readonly transformerConstructor: typeof CombinationCandlestickChartSpecTransformer; readonly transformerConstructor: typeof CombinationCandlestickChartSpecTransformer; protected _setModelOption(): void; } export declare const registerCombinationCandlestickChart: () => void;