/** * Error types for sandbox command and code execution. * * These are runtime throwables raised by sandbox execution; consumers can * branch on them via `instanceof` to distinguish timeouts from aborts. */ /** * Thrown by sandbox execution when the configured `timeout` elapses. */ export declare class SandboxTimeoutError extends Error { constructor(seconds: number); } /** * Thrown by sandbox execution when the abort signal fires. */ export declare class SandboxAbortError extends Error { constructor(); } /** * Thrown by {@link Sandbox.listFiles} when the path does not exist, distinguishing * genuine absence from permission or transport failures (which throw plain errors). */ export declare class SandboxPathNotFoundError extends Error { constructor(path: string); } //# sourceMappingURL=errors.d.ts.map