export declare const template = " set a to container of c\n set acctFound to false\n repeat 10 times\n if (class of a) is account then\n set acctFound to true\n exit repeat\n end if\n set a to container of a\n end repeat\n if not acctFound then error \"Could not resolve the account for this note.\""; export type TemplateType = {}; declare const render: (args: TemplateType) => string; export default render;