export declare const template = "[Unit]\nDescription=Agency scheduled agent: {{{name:string}}}\n\n[Service]\nType=oneshot\nWorkingDirectory={{{agentDir:string}}}\nExecStart=/bin/bash \"{{{runScriptPath:string}}}\"\n"; export type TemplateType = { name: string; agentDir: string; runScriptPath: string; }; declare const render: (args: TemplateType) => string; export default render;