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