import * as z from "zod/v4"; export type GetDeploymentGroupByExternalIdGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type GetDeploymentGroupByExternalIdRequest = { /** * Project ID or name. Optional for project-scoped API keys. */ project?: string | undefined; /** * Case-sensitive, URL- and header-safe identifier from the integrating application. */ externalId: string; }; /** @internal */ export type GetDeploymentGroupByExternalIdRequest$Outbound = { project?: string | undefined; externalId: string; }; /** @internal */ export declare const GetDeploymentGroupByExternalIdRequest$outboundSchema: z.ZodType; export declare function getDeploymentGroupByExternalIdRequestToJSON(getDeploymentGroupByExternalIdRequest: GetDeploymentGroupByExternalIdRequest): string; //# sourceMappingURL=getdeploymentgroupbyexternalid.d.ts.map