/** * The names of the sandbox modes, without the sandbox. * * Separated for the same measured reason as tool-outcome.ts: sandbox.ts imports execaSync — it has * to, it runs bubblewrap — and execa costs about 187ms to load on a Raspberry Pi. The entry point * needs only this list, to check a --sandbox flag, and was paying for the whole module to get it. */ export type SandboxMode = 'off' | 'workspace-write' | 'read-only'; export declare const SANDBOX_MODES: readonly SandboxMode[]; //# sourceMappingURL=sandbox-modes.d.ts.map