import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CompactionContextManagement = { type: "compaction"; /** * The token threshold above which conversation context should be compacted. Must be at least 1000. */ compactThreshold: number; }; /** @internal */ export declare const CompactionContextManagement$inboundSchema: z.ZodType; /** @internal */ export type CompactionContextManagement$Outbound = { type: "compaction"; compact_threshold: number; }; /** @internal */ export declare const CompactionContextManagement$outboundSchema: z.ZodType; export declare function compactionContextManagementToJSON(compactionContextManagement: CompactionContextManagement): string; export declare function compactionContextManagementFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=compactioncontextmanagement.d.ts.map