import type { Command } from "commander"; import type { Api } from "../../api.js"; type Subject = "app" | "worker"; /** * `env list | set | remove` over the per-app / per-worker env vars * (`/hosting/env-vars`). Workspace-wide variables live under * `workspaceManagement envVar` and are inherited without being listed here. */ export declare function registerHostingEnvVarCommands(parent: Command, getApi: () => Api, options: { subject: Subject; name: string; }): void; export {}; //# sourceMappingURL=envVar.d.ts.map