import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * This is returned when the chunking strategy is unknown. Typically, this is because the file was indexed before the chunking_strategy concept was introduced in the API. */ export type OtherChunkingStrategy = { /** * Always 'other'. */ type: "other"; }; /** @internal */ export declare const OtherChunkingStrategy$inboundSchema: z.ZodType; /** @internal */ export type OtherChunkingStrategy$Outbound = { type: "other"; }; /** @internal */ export declare const OtherChunkingStrategy$outboundSchema: z.ZodType; export declare function otherChunkingStrategyToJSON(otherChunkingStrategy: OtherChunkingStrategy): string; export declare function otherChunkingStrategyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=otherchunkingstrategy.d.ts.map