export declare const template = " tell application \"Notes\"\n set n to note id (item 1 of argv) of folder (item 2 of argv)\n set d to (ASCII character 1)\n return (plaintext of n) & d & ((modification date of n) as text)\n end tell"; export type TemplateType = {}; declare const render: (args: TemplateType) => string; export default render;