import { BaseSchemes } from 'rete'; import { VuePlugin } from '..'; type ComponentProps = Record | undefined | void | null; type RenderResult = { component: any; props: ComponentProps; } | undefined | void | null; export type RenderPreset = { attach?: (plugin: VuePlugin) => void; update: (context: Extract, plugin: VuePlugin) => ComponentProps; render: (context: Extract, plugin: VuePlugin) => RenderResult; }; export {}; //# sourceMappingURL=types.d.ts.map