import type { IMarkRaw, IMarkStyle } from '@visactor/vchart'; import { GlyphMark } from '@visactor/vchart'; import type { ICandlestickMarkSpec } from './interface'; export type ICandlestickMark = IMarkRaw; export declare const CANDLESTICK_MARK_TYPE = "candlestick"; export declare class CandlestickMark extends GlyphMark implements ICandlestickMark { static readonly type = "candlestick"; readonly type = "candlestick"; setGlyphConfig(cfg: any): void; protected _getDefaultStyle(): IMarkStyle; } export declare const registerCandlestickMark: () => void;