import { BaseChart } from '@visactor/vchart'; import type { IPictogramChartSpec } from './interface'; import { PictogramChartSpecTransformer } from './pictogram-transformer'; export declare class PictogramChart extends BaseChart { static readonly type: string; static readonly seriesType: string; static readonly transformerConstructor: typeof PictogramChartSpecTransformer; readonly transformerConstructor: typeof PictogramChartSpecTransformer; readonly type: string; readonly seriesType: string; } export declare const registerPictogramChart: () => void;