import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DocumentOrErrorUnion } from "./documentorerrorunion.js"; export type GetDocumentsResponse = { /** * The document details or the error if document is not found. */ documents?: { [k: string]: DocumentOrErrorUnion; } | undefined; }; /** @internal */ export declare const GetDocumentsResponse$inboundSchema: z.ZodType; export declare function getDocumentsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getdocumentsresponse.d.ts.map