import * as z from "zod/v4"; import { ProjectRole } from "./projectrole.js"; /** * Project-scoped configuration */ export type ProjectScope = { type: "project"; /** * ID of the project this is scoped to */ projectId: string; /** * Role for project-scoped service accounts */ role: ProjectRole; }; /** @internal */ export type ProjectScope$Outbound = { type: "project"; projectId: string; role: string; }; /** @internal */ export declare const ProjectScope$outboundSchema: z.ZodType; export declare function projectScopeToJSON(projectScope: ProjectScope): string; //# sourceMappingURL=projectscope.d.ts.map