export type ScorecardResult = Record; /** * Inject the result JSON into a template's data island. Pure (no I/O) so the * injection + escaping contract is unit-testable without a built template. */ export declare function injectScorecard(template: string, result: ScorecardResult): string; /** * Render a scorecard result as a single self-contained HTML document: an * interactive React SPA with its JS and CSS inlined and the result JSON assigned * to `window.__SCORECARD__`. No external assets, works offline. */ export declare function format(result: ScorecardResult): string;