import * as z from "zod/v4"; export type GetWorkspaceGlobals = { /** * 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 GetWorkspaceRequest = { /** * Unique identifier for the workspace. */ id: string; }; /** @internal */ export type GetWorkspaceRequest$Outbound = { id: string; }; /** @internal */ export declare const GetWorkspaceRequest$outboundSchema: z.ZodType; export declare function getWorkspaceRequestToJSON(getWorkspaceRequest: GetWorkspaceRequest): string; //# sourceMappingURL=getworkspace.d.ts.map