import * as z from "zod/v4"; export type UpdateWorkspaceGlobals = { /** * 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 UpdateWorkspaceRequestBody = { logoUrl?: string | null | undefined; }; export type UpdateWorkspaceRequest = { /** * Unique identifier for the workspace. */ id: string; requestBody?: UpdateWorkspaceRequestBody | undefined; }; /** @internal */ export type UpdateWorkspaceRequestBody$Outbound = { logoUrl?: string | null | undefined; }; /** @internal */ export declare const UpdateWorkspaceRequestBody$outboundSchema: z.ZodType; export declare function updateWorkspaceRequestBodyToJSON(updateWorkspaceRequestBody: UpdateWorkspaceRequestBody): string; /** @internal */ export type UpdateWorkspaceRequest$Outbound = { id: string; RequestBody?: UpdateWorkspaceRequestBody$Outbound | undefined; }; /** @internal */ export declare const UpdateWorkspaceRequest$outboundSchema: z.ZodType; export declare function updateWorkspaceRequestToJSON(updateWorkspaceRequest: UpdateWorkspaceRequest): string; //# sourceMappingURL=updateworkspace.d.ts.map