export declare const template = " tell application \"Notes\"\n return (exists folder (item 1 of argv)) as text\n end tell"; export type TemplateType = {}; declare const render: (args: TemplateType) => string; export default render;