export declare const template = " tell application \"Notes\"\n set d to (ASCII character 1)\n set out to \"\"\n repeat with n in (notes whose plaintext contains (item 1 of argv))\n {{{noteRow}}}\n end repeat\n return out\n end tell"; export type TemplateType = { noteRow: string | boolean | number; }; declare const render: (args: TemplateType) => string; export default render;