import * as z from "zod/v3"; export type WorkspaceEnvelopeForCreate = { /** * The name for the envelope */ envelopeName: string | null; /** * The optional list of document IDs to be added to the envelope */ documentIds?: Array | null | undefined; }; /** @internal */ export type WorkspaceEnvelopeForCreate$Outbound = { envelope_name: string | null; document_ids?: Array | null | undefined; }; /** @internal */ export declare const WorkspaceEnvelopeForCreate$outboundSchema: z.ZodType; export declare function workspaceEnvelopeForCreateToJSON(workspaceEnvelopeForCreate: WorkspaceEnvelopeForCreate): string; //# sourceMappingURL=workspaceenvelopeforcreate.d.ts.map