import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Describes the response body of the /getdocumentcount API call */ export type GetDocumentCountResponse = { /** * Number of documents corresponding to the specified custom datasource. */ documentCount?: number | undefined; }; /** @internal */ export declare const GetDocumentCountResponse$inboundSchema: z.ZodType; export declare function getDocumentCountResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getdocumentcountresponse.d.ts.map