import { BaseSchemes } from 'rete'; import { AngularPlugin } from '../core'; export declare type RenderPreset = { attach?: (plugin: AngularPlugin) => void; update: (context: Extract, plugin: AngularPlugin) => Record | undefined | null | void; mount: (context: Extract, plugin: AngularPlugin) => { key: string; component: any; props: Record; } | undefined | null | void; };