export declare const template = " tell application \"Notes\"\n set d to (ASCII character 1)\n set out to \"\"\n repeat with f in folders\n set c to container of f\n if (class of c) is account then\n set out to out & (id of f) & d & (name of f) & d & \u00AC\n ((count of notes of f) as text) & linefeed\n end if\n end repeat\n return out\n end tell"; export type TemplateType = {}; declare const render: (args: TemplateType) => string; export default render;