import * as z from "zod/v4"; import * as models from "../index.js"; export type UpdateWorkspaceSettingsGlobals = { /** * 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 UpdateWorkspaceSettingsRequest = { /** * Unique identifier for the workspace. */ id: string; updateWorkspaceSettingsRequest?: models.UpdateWorkspaceSettingsRequest | undefined; }; /** @internal */ export type UpdateWorkspaceSettingsRequest$Outbound = { id: string; UpdateWorkspaceSettingsRequest?: models.UpdateWorkspaceSettingsRequest$Outbound | undefined; }; /** @internal */ export declare const UpdateWorkspaceSettingsRequest$outboundSchema: z.ZodType; export declare function updateWorkspaceSettingsRequestToJSON(updateWorkspaceSettingsRequest: UpdateWorkspaceSettingsRequest): string; //# sourceMappingURL=updateworkspacesettings.d.ts.map