/** * Sandbox commands over `/api//sandboxes` — the only surface for * provider-backed runtimes (sandboxes are not part of `lobu apply`, and deletes * are deliberately imperative + `--yes`-gated so a config edit can never drop a * credential). */ import type { CloudCommandOptions } from "./_lib/cloud-options.js"; export declare function sandboxListCommand(options?: CloudCommandOptions): Promise; export declare function sandboxCreateCommand(name: string, options: CloudCommandOptions & { provider: string; credential?: string[]; }): Promise; export declare function sandboxSetCredentialCommand(id: string, options: CloudCommandOptions & { credential: string[]; }): Promise; export declare function sandboxDeleteCommand(id: string, options?: CloudCommandOptions & { yes?: boolean; }): Promise; //# sourceMappingURL=sandbox.d.ts.map