import * as z from "zod/v4"; import { DeploymentGroupScope, DeploymentGroupScope$Outbound } from "./deploymentgroupscope.js"; import { DeploymentScope, DeploymentScope$Outbound } from "./deploymentscope.js"; import { ManagerScope, ManagerScope$Outbound } from "./managerscope.js"; import { ProjectScope, ProjectScope$Outbound } from "./projectscope.js"; import { WorkspaceScope, WorkspaceScope$Outbound } from "./workspacescope.js"; /** * Scope and role configuration for service accounts */ export type Scope = WorkspaceScope | ProjectScope | DeploymentScope | DeploymentGroupScope | ManagerScope; /** @internal */ export type Scope$Outbound = WorkspaceScope$Outbound | ProjectScope$Outbound | DeploymentScope$Outbound | DeploymentGroupScope$Outbound | ManagerScope$Outbound; /** @internal */ export declare const Scope$outboundSchema: z.ZodType; export declare function scopeToJSON(scope: Scope): string; //# sourceMappingURL=scope.d.ts.map