import { BasePlugin, BasicSubRenderInfo, RendererEventContext, ScaffoldForm, SubRendererInfo } from 'amis-editor-core'; export declare class ConditionBilderPlugin extends BasePlugin { static id: string; rendererName: string; $schema: string; name: string; isBaseComponent: boolean; icon: string; pluginIcon: string; description: string; docLink: string; tags: string[]; scaffold: { type: string; label: string; name: string; description: string; fields: ({ label: string; type: string; id: string; name: string; options?: undefined; } | { label: string; type: string; id: string; name: string; options: { label: string; value: string; }[]; })[]; }; get scaffoldForm(): ScaffoldForm; previewSchema: any; panelTitle: string; panelBodyCreator: (context: BaseEventContext) => any[]; buildSubRenderers(context: RendererEventContext, renderers: Array): BasicSubRenderInfo | Array | void; }