import type { NodeMetadata } from '../../types/index.js'; import { type UIAction } from '../../commands/index.js'; interface Props { /** Available node types for command execution */ nodeTypes: NodeMetadata[]; /** Callback for UI actions (open config, select node) */ onUIAction?: (action: UIAction) => void; } declare const CommandConsole: import("svelte").Component; type CommandConsole = ReturnType; export default CommandConsole;