import { FormControlProps } from 'amis-core';
import type { BaseEventContext, RendererPluginEvent, RendererPluginAction } from 'amis-editor-core';
import { ChartBasePlugin } from './common/ChartBasePlugin';
export interface ChartMapProps extends FormControlProps {
}
export interface ChartMapDslContainerProps extends FormControlProps {
}
export default class ChartMapPlugin extends ChartBasePlugin {
    rendererName: string;
    name: string;
    description: string;
    pluginIcon: string;
    scaffold: any;
    previewSchema: any;
    panelTitle: string;
    panelJustify: boolean;
    events: RendererPluginEvent[];
    actions: RendererPluginAction[];
    panelBodyAsyncCreator(context: BaseEventContext): Promise<any>;
}
