export declare const template = " tell application \"Notes\"\n set n to note id (item 1 of argv)\n set c to container of n\n{{{accountWalk}}}\n set d to (ASCII character 1)\n return (name of n) & d & (name of c) & d & (name of a) & d & \u00AC\n ((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;