import type { CodeChunk } from './types.js'; /** * Chunk a Shopify JSON template file * * JSON templates are typically small (define section layout), * so we keep them as a single chunk and extract section references. */ export declare function chunkJSONTemplate(filepath: string, content: string): CodeChunk[]; //# sourceMappingURL=json-template-chunker.d.ts.map