/**
 * 饼图的右侧属性面板
 */
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 ChartPieProps extends FormControlProps {
}
export interface ChartPieDslContainerProps extends FormControlProps {
}
export default class ChartPiePlugin extends ChartBasePlugin {
    rendererName: string;
    name: string;
    description: string;
    icon: string;
    scaffold: any;
    previewSchema: any;
    panelTitle: string;
    actions: RendererPluginAction[];
    panelJustify: boolean;
    panelBodyAsyncCreator(context: BaseEventContext): Promise<any>;
}
