import type { RuleContext } from './context-builder.js'; export declare class TemplateError extends Error { readonly cause?: unknown | undefined; constructor(message: string, cause?: unknown | undefined); } export type RenderResult = { success: true; output: string; } | { success: false; error: TemplateError; }; /** * Render a Handlebars template with the given context */ export declare function renderTemplate(templateSource: string, context: RuleContext): RenderResult; //# sourceMappingURL=template-renderer.d.ts.map