import { type ScriptRegistry } from './default-scripts.js'; export type { ScriptRegistry, ScriptValue, StepSpec } from './default-scripts.js'; /** * Return the default workspace scripts. * * A function rather than the exported table itself: callers merge overrides into the result, and `generateHelp` * rewrites entries in place, so each caller needs a copy the module does not share. */ export declare function getDefaultWorkspaceScripts(): ScriptRegistry; /** * Return the default root scripts. */ export declare function getDefaultRootScripts(): ScriptRegistry;