import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Document } from "./document.js"; export type GetDocumentsByFacetsResponse = { /** * The document details, ordered by score. */ documents?: Array | undefined; /** * Whether more results are available. Use cursor to retrieve them. */ hasMoreResults?: boolean | undefined; /** * Cursor that indicates the start of the next page of results. To be passed in "more" requests for this query. */ cursor?: string | undefined; }; /** @internal */ export declare const GetDocumentsByFacetsResponse$inboundSchema: z.ZodType; export declare function getDocumentsByFacetsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getdocumentsbyfacetsresponse.d.ts.map