import type { SessionState, WithParts } from "../state"; export declare const PRUNED_OUTPUT = "[Output pruned]"; export declare const PRUNED_INPUT = "[pruned]"; export declare const PRUNED_QUESTIONS = "[pruned - see output]"; /** * Get prunable content string if the value should be pruned. * Returns null if the value is already pruned or too short. */ export declare function getPrunableContent(value: any, placeholder: string): string | null; export declare const prune: (state: SessionState, messages: WithParts[]) => void; //# sourceMappingURL=prune.d.ts.map