import type { ChunkStrategy, ContentType } from '../config-schema.js'; import type { Chunk } from '../types.js'; import type { Chunker } from './chunker.js'; /** * Session Log Chunker — the most critical chunker. * * Preserves parent heading breadcrumbs for every content block. * Output: `[Session 142 > Traps > Next.js Caching] We found that...` */ export declare class SessionLogChunker implements Chunker { readonly strategy: ChunkStrategy; chunk(content: string, filePath: string, type: ContentType): Chunk[]; } //# sourceMappingURL=session-log-chunker.d.ts.map