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 /checkdocumentaccess API call */ export type CheckDocumentAccessResponse = { /** * If true, user has access to document for search */ hasAccess?: boolean | undefined; }; /** @internal */ export declare const CheckDocumentAccessResponse$inboundSchema: z.ZodType; export declare function checkDocumentAccessResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=checkdocumentaccessresponse.d.ts.map