import type { CodeChunk } from './types.js'; /** * Chunk a Liquid template file * * Special handling for: * - {% schema %} blocks (kept together, extract section name) * - {% style %} blocks (kept together) * - {% javascript %} blocks (kept together) * - {% render %}, {% include %}, and {% section %} tags (tracked as imports) * - Regular template content (chunked by lines) */ export declare function chunkLiquidFile(filepath: string, content: string, chunkSize?: number, chunkOverlap?: number): CodeChunk[]; //# sourceMappingURL=liquid-chunker.d.ts.map