import type { UnderstandingKind, UserContextScope, UserUnderstanding } from './domain.js'; export declare function createManualUnderstanding(input: { content: string; kind: UnderstandingKind; scope: UserContextScope; sensitivity: UserUnderstanding['sensitivity']; durability: UserUnderstanding['durability']; disclosurePolicy: UserUnderstanding['disclosurePolicy']; }): { understanding: UserUnderstanding; created: boolean; };