/**
 * 雷达图的右侧属性面板
 */
import { FormControlProps } from 'amis-core';
import { RendererPluginAction } from 'amis-editor-core';
import type { BaseEventContext } from 'amis-editor-core';
import { ChartBasePlugin } from './common/ChartBasePlugin';
export interface ChartRadarProps extends FormControlProps {
}
export interface ChartRadarDslContainerProps extends FormControlProps {
}
export default class ChartRadarPlugin extends ChartBasePlugin {
    rendererName: string;
    $schema: string;
    isBaseComponent: boolean;
    order: number;
    name: string;
    description: string;
    tags: string[];
    pluginIcon: string;
    scaffold: any;
    previewSchema: any;
    panelTitle: string;
    actions: RendererPluginAction[];
    panelJustify: boolean;
    panelBodyAsyncCreator(context: BaseEventContext): Promise<any>;
}
