export declare const template = " tell application \"Notes\"\n set n to note id (item 1 of argv)\n if (password protected of n) then error \"note is locked\"\n delete n\n end tell"; export type TemplateType = {}; declare const render: (args: TemplateType) => string; export default render;