/** * Extracts <%raw%>...<%endraw%> blocks from content, replacing them with * unique placeholders. Returns the modified content and a restore function * that swaps placeholders back with the original inner content. */ export declare function extractRawBlocks(content: string): { content: string; restore: (rendered: string) => string; }; //# sourceMappingURL=extractRawBlocks.d.ts.map