export declare const template = "\n\n\n\nAgency Coverage Report\n\n\n\n

Agency Coverage Report

\n

Total: {{{totalPercentage:string}}}% ({{totalCovered:number}}/{{totalSteps:number}} steps)

\n\n \n {{{fileRowsHtml:string}}}\n
FileCoverageSteps
\n{{{fileSectionsHtml:string}}}\n\n\n"; export type TemplateType = { totalPercentage: string; totalCovered: number; totalSteps: number; fileRowsHtml: string; fileSectionsHtml: string; }; declare const render: (args: TemplateType) => string; export default render;