export interface SandboxContext { timeout: number; memoryLimit: number; allowedModules: string[]; allowedGlobals: string[]; environment: 'development' | 'staging' | 'production'; userPermissions: string[]; resourceLimits: { maxCpuTime: number; maxHeapSize: number; maxStackSize: number; }; } //# sourceMappingURL=SandboxContext.d.ts.map