import { Sandbox } from './base.js'; import type { ExecuteOptions } from './base.js'; import type { ExecutionResult, FileInfo, StreamChunk } from './types.js'; /** * Runs on the host with no isolation. Used as the default when no sandbox is configured. */ export declare class NotASandboxLocalEnvironment extends Sandbox { private _resolvePath; executeStreaming(command: string, options?: ExecuteOptions): AsyncGenerator; executeCodeStreaming(code: string, language: string, options?: ExecuteOptions): AsyncGenerator; readFile(path: string): Promise; writeFile(path: string, content: Uint8Array): Promise; removeFile(path: string): Promise; listFiles(path: string): Promise; } //# sourceMappingURL=not-a-sandbox-local-environment.d.ts.map