import * as z from "zod/v3"; export type CreateWorkspaceBody = { /** * The name of the workspace */ name: string | null; /** * A GUID value that identifies a brand. For more information, see Branding */ brandId?: string | null | undefined; }; /** @internal */ export type CreateWorkspaceBody$Outbound = { name: string | null; brand_id?: string | null | undefined; }; /** @internal */ export declare const CreateWorkspaceBody$outboundSchema: z.ZodType; export declare function createWorkspaceBodyToJSON(createWorkspaceBody: CreateWorkspaceBody): string; //# sourceMappingURL=createworkspacebody.d.ts.map