export declare const template = " tell application \"Notes\"\n if not (exists folder (item 3 of argv)) then\n make new folder with properties {name:(item 3 of argv)}\n end if\n set f to folder (item 3 of argv)\n set n to make new note at f with properties {name:(item 1 of argv), body:(item 2 of argv)}\n set c to container of n\n{{{accountWalk}}}\n set d to (ASCII character 1)\n return (id of n) & d & (name of n) & d & (name of c) & d & (name of a) & d & \u00AC\n ((modification date of n) as text) & d & ((password protected of n) as text)\n end tell"; export type TemplateType = { accountWalk: string | boolean | number; }; declare const render: (args: TemplateType) => string; export default render;