export type RecipePythonExecutionResult = { ok: boolean; stdout: string; stderr: string; result: string | null; error: string | null; }; export type RecipePythonRepl = { sandboxDir: string; execute: (code: string) => Promise; close: () => Promise; }; /** * Creates a persistent system-python REPL process for recipe execution. * Expects: python3 is available and writes stay within sources/recipe/.sandbox/. */ export declare function recipePythonReplCreate(name: string): Promise; //# sourceMappingURL=recipePythonReplCreate.d.ts.map