import type { SandboxConfig } from '@struktoai/mirage-core/runtime/sandbox/config'; /** How to reach the user's live Daytona sandbox. */ export interface DaytonaConfig extends SandboxConfig { /** * Id of a sandbox you created (dashboard, `daytona sandbox create`, * or the SDK). Boot it from an image or snapshot with fuse3 and * mirage installed. */ sandboxId: string; /** Daytona credential; absent reads DAYTONA_API_KEY. */ apiKey?: string; } export declare const DAYTONA_CONFIG_KEYS: readonly string[]; //# sourceMappingURL=config.d.ts.map