import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListDocument = { /** * The ID of the indexed document */ docId: string; /** * Title of the document */ title?: string | undefined; /** * URL associated with the document */ url?: string | null | undefined; }; /** @internal */ export declare const ListDocument$inboundSchema: z.ZodType; /** @internal */ export type ListDocument$Outbound = { doc_id: string; title?: string | undefined; url?: string | null | undefined; }; /** @internal */ export declare const ListDocument$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ListDocument$ { /** @deprecated use `ListDocument$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListDocument$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListDocument$Outbound` instead. */ type Outbound = ListDocument$Outbound; } export declare function listDocumentToJSON(listDocument: ListDocument): string; export declare function listDocumentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listdocument.d.ts.map