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 ChartFunnelProps extends FormControlProps { } export interface ChartFunnelDslContainerProps extends FormControlProps { } export default class ChartFunnelPlugin extends ChartBasePlugin { rendererName: string; name: string; description: string; pluginIcon: string; scaffold: any; previewSchema: any; panelTitle: string; actions: RendererPluginAction[]; panelJustify: boolean; panelBodyAsyncCreator(context: BaseEventContext): Promise; }