import { type Chunk, type ChunkingConfig } from "./types"; /** * 텍스트 청킹 * - 현재 가이드에서는 400토큰 이하만 저장하므로 기본적으로 사용하지 않음 * - 추후 긴 문서 처리 시 사용 */ export declare class Chunking { private config; constructor(config?: Partial); /** * 텍스트를 청크로 분할 */ chunk(text: string): Chunk[]; /** * 청킹이 필요한지 확인 */ needsChunking(text: string): boolean; /** * 예상 청크 수 계산 */ estimateChunkCount(text: string): number; private extractChunk; private splitBySeparator; } //# sourceMappingURL=chunking.d.ts.map