/** biome-ignore-all lint/suspicious/noConsole: Console output is intentional in CLI */ export declare class CmsEditProcessExit extends Error { readonly exitCode: number; constructor(exitCode: number); } export interface RunCmsEditArgsResult { exitCode: number; output: string; } /** * Runs cms-edit commands in-process, capturing stdout/stderr instead of spawning a child. * Used by the hosted MCP server on Vercel. */ export declare function runCmsEditArgs(args: string[]): Promise; //# sourceMappingURL=runner.d.ts.map