import type { CodeChunk } from './types.js'; export interface ChunkOptions { chunkSize?: number; chunkOverlap?: number; useAST?: boolean; astFallback?: 'line-based' | 'error'; /** * Absolute path to the workspace/monorepo root. Enables cross-package * import resolution for JS/TS monorepos — see `ASTChunkOptions.workspaceRoot`. * Optional; omit for non-monorepo projects (zero behavior change). */ workspaceRoot?: string; } export declare function chunkFile(filepath: string, content: string, options?: ChunkOptions): CodeChunk[]; export declare function chunkText(text: string, options?: ChunkOptions): string[]; //# sourceMappingURL=chunker.d.ts.map