import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type AnthropicCompactionBlock = { content: string | null; encryptedContent?: string | null | undefined; type: "compaction"; }; /** @internal */ export declare const AnthropicCompactionBlock$inboundSchema: z.ZodType; export declare function anthropicCompactionBlockFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=anthropiccompactionblock.d.ts.map