import { Plot } from '../../base'; import type { Adaptor } from '../../types'; import { ColumnOptions } from './type'; export type { ColumnOptions }; export declare class Column extends Plot { /** 图表类型 */ type: string; static getDefaultOptions(): Partial; protected getDefaultOptions(): Partial; protected getSchemaAdaptor(): (params: Adaptor) => void; }