import type { SandboxConfig } from '@struktoai/mirage-core/runtime/sandbox/config'; /** How to reach the user's live E2B sandbox. */ export interface E2BConfig extends SandboxConfig { /** * Id of a sandbox you created (`e2b sandbox spawn` or the SDK), * booted from a template with fuse3 and mirage installed. */ sandboxId: string; /** E2B credential; absent reads E2B_API_KEY. */ apiKey?: string; } export declare const E2B_CONFIG_KEYS: readonly string[]; //# sourceMappingURL=config.d.ts.map