import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CreateWorkspaceDocumentOwner } from "./createworkspacedocumentowner.js"; export type CreateWorkspaceDocumentResponse = { documentId?: string | undefined; name?: string | null | undefined; ownerId?: string | null | undefined; size?: number | null | undefined; createdDate?: Date | null | undefined; lastUpdatedDate?: Date | null | undefined; owner?: CreateWorkspaceDocumentOwner | undefined; }; /** @internal */ export declare const CreateWorkspaceDocumentResponse$inboundSchema: z.ZodType; export declare function createWorkspaceDocumentResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createworkspacedocumentresponse.d.ts.map