export declare const template = " tell application \"Notes\"\n set n to note id (item 1 of argv) of folder (item 3 of argv)\n{{{appendBody}}}\n end tell"; export type TemplateType = { appendBody: string | boolean | number; }; declare const render: (args: TemplateType) => string; export default render;