import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DeleteDocumentRequest = { /** * The unique ID of the document to delete */ docId: string; /** * The name of the index containing the document */ indexName: string; }; /** @internal */ export declare const DeleteDocumentRequest$inboundSchema: z.ZodType; /** @internal */ export type DeleteDocumentRequest$Outbound = { doc_id: string; index_name: string; }; /** @internal */ export declare const DeleteDocumentRequest$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 DeleteDocumentRequest$ { /** @deprecated use `DeleteDocumentRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DeleteDocumentRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DeleteDocumentRequest$Outbound` instead. */ type Outbound = DeleteDocumentRequest$Outbound; } export declare function deleteDocumentRequestToJSON(deleteDocumentRequest: DeleteDocumentRequest): string; export declare function deleteDocumentRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deletedocument.d.ts.map