import type { MemoryKind } from '../agent/memory/types.js'; export declare function isStandaloneUnderstandingContent(content: string): boolean; export declare function isActionableUnderstandingContent(content: string): boolean; export declare function isDurableUnderstandingCandidate(kind: MemoryKind, content: string): boolean; export declare function isNearDuplicateUnderstanding(left: string, right: string): boolean;