export declare const template = "__AgencyFunction.create({ name: {{{name:string}}}, module: {{{module:string}}}, fn: {{{fn:string}}}, params: [{{{paramsStr:string}}}], toolDefinition: null }, __toolRegistry)"; export type TemplateType = { name: string; module: string; fn: string; paramsStr: string; }; declare const render: (args: TemplateType) => string; export default render;