declare const VALID_TYPES: readonly ["user", "feedback", "project", "reference"]; export type CcMemoryType = (typeof VALID_TYPES)[number]; export interface CcMemoryFrontmatter { name: string; description: string; type: CcMemoryType; } export interface CcMemoryFile { frontmatter: CcMemoryFrontmatter; body: string; } /** * Parse a Claude Code memory file into frontmatter + body. * Returns null if the file is not a valid cc-ts memory file. */ export declare function parseCcMemoryFile(content: string): CcMemoryFile | null; /** * Map cc-ts memory type to ByteRover context tree domain path. */ export declare function ccTypeToDomain(type: CcMemoryType): string; export {};