import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CreateWorkspaceRequest = { /** * The ID of the account */ accountId: string; /** * The details of the workspace to be created including the name */ createWorkspaceBody: components.CreateWorkspaceBody; }; /** @internal */ export type CreateWorkspaceRequest$Outbound = { accountId: string; CreateWorkspaceBody: components.CreateWorkspaceBody$Outbound; }; /** @internal */ export declare const CreateWorkspaceRequest$outboundSchema: z.ZodType; export declare function createWorkspaceRequestToJSON(createWorkspaceRequest: CreateWorkspaceRequest): string; //# sourceMappingURL=createworkspace.d.ts.map