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 <a href="https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/branding/">Branding</a>
     */
    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<CreateWorkspaceBody$Outbound, z.ZodTypeDef, CreateWorkspaceBody>;
export declare function createWorkspaceBodyToJSON(createWorkspaceBody: CreateWorkspaceBody): string;
//# sourceMappingURL=createworkspacebody.d.ts.map