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