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