import { BasePlugin } from 'amis-editor-core'; export declare class TasksPlugin extends BasePlugin { static id: string; rendererName: string; $schema: string; name: string; isBaseComponent: boolean; description: string; searchKeywords: string; docLink: string; tags: string[]; icon: string; pluginIcon: string; scaffold: { type: string; name: string; items: ({ label: string; key: string; status: number; remark: string; } | { label: string; key: string; status: number; remark?: undefined; })[]; }; previewSchema: { type: string; name: string; items: ({ label: string; key: string; status: number; remark: string; } | { label: string; key: string; status: number; remark?: undefined; })[]; }; panelTitle: string; panelBodyCreator: (context: BaseEventContext) => any; }