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