import { RendererPluginEvent, BasePlugin } from 'amis-editor-core'; export declare class CalendarPlugin extends BasePlugin { static id: string; rendererName: string; $schema: string; name: string; isBaseComponent: boolean; icon: string; pluginIcon: string; panelTitle: string; description: string; docLink: string; tags: string[]; scaffold: { type: string; }; previewSchema: { type: string; }; events: RendererPluginEvent[]; actions: any[]; panelJustify: boolean; panelBodyCreator: (context: BaseEventContext) => any[]; }