import { BaseComponent } from '../components'; import type { NodeFactory } from './NodeFactory.svelte'; import { type XmlSchema } from '@selenite/commons'; export declare class CodeIntegration extends BaseComponent { /** * Pulls the selected nodes from the graph editor to the code editor */ toCode({ text, schema }: { text?: string; schema: XmlSchema; }): Promise; /** * Pushes the selected text from the code editor to the graph editor */ toGraph({ text: xml, schema }: { schema: XmlSchema; text: string; }): Promise; }