export declare const template = "on run argv\n with timeout of {{{timeoutSeconds}}} seconds\n{{{body}}}\n end timeout\nend run"; export type TemplateType = { timeoutSeconds: string | boolean | number; body: string | boolean | number; }; declare const render: (args: TemplateType) => string; export default render;