/** * Type and tag mappings for memory classification. * Used to automatically tag memories based on type or text prefix. */ /** * Entity type to tag mapping. * Used with --type flag to set semantic tags. */ export declare const TYPE_MAP: Record; /** * Auto-detect prefixes in text. * When text starts with these prefixes, the corresponding tag is applied. */ export declare const PREFIX_MAP: Record; /** * Detect tag from text prefix. * * @param text - Text to check for prefix * @returns Tag if prefix found, null otherwise */ export declare function detectPrefixTag(text: string): string | null; /** * Resolve tag from explicit flag, type mapping, or text prefix. * * @param text - Memory text content * @param explicitTag - Explicit --tag flag value * @param entityType - Explicit --type flag value * @returns Resolved tag or undefined */ export declare function resolveTag(text: string, explicitTag: string | null | undefined, entityType: string | null | undefined): string | undefined; //# sourceMappingURL=type-mappings.d.ts.map