import * as z from "zod/v4"; import * as models from "../index.js"; export type GetWorkspaceGatewayOverviewGlobals = { /** * 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 GetWorkspaceGatewayOverviewRequest = { /** * Alien Gateway a customer deployment runs */ gateway: models.GatewayKind; }; /** @internal */ export type GetWorkspaceGatewayOverviewRequest$Outbound = { gateway: string; }; /** @internal */ export declare const GetWorkspaceGatewayOverviewRequest$outboundSchema: z.ZodType; export declare function getWorkspaceGatewayOverviewRequestToJSON(getWorkspaceGatewayOverviewRequest: GetWorkspaceGatewayOverviewRequest): string; //# sourceMappingURL=getworkspacegatewayoverview.d.ts.map