export declare const template = "# Optimize run {{{runId}}}\n\n{{{metaLines}}}\n\n## Iterations\n\n| iter | decision | detail |\n| --- | --- | --- |\n{{{iterationRows}}}{{{championSection}}}\n"; export type TemplateType = { runId: string | boolean | number; metaLines: string | boolean | number; iterationRows: string | boolean | number; championSection: string | boolean | number; }; declare const render: (args: TemplateType) => string; export default render;