import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type IndexStatus = { /** * When the document was last crawled */ lastCrawledTime?: Date | undefined; /** * When the document was last indexed */ lastIndexedTime?: Date | undefined; }; /** @internal */ export declare const IndexStatus$inboundSchema: z.ZodType; /** @internal */ export type IndexStatus$Outbound = { lastCrawledTime?: string | undefined; lastIndexedTime?: string | undefined; }; /** @internal */ export declare const IndexStatus$outboundSchema: z.ZodType; export declare function indexStatusToJSON(indexStatus: IndexStatus): string; export declare function indexStatusFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=indexstatus.d.ts.map