import { TemplateContext } from './note-creation-types'; import { URI } from '../model/uri'; import dayjs from 'dayjs'; /** * Builds the globals and helpers exposed to a JavaScript template — the * template-facing API surface (date/string utilities, a logging console, the * `URI` type, etc.). * * This is NOT a security sandbox. */ export declare function createTemplateGlobals(context: TemplateContext): { console: { log: (...args: any[]) => void; warn: (...args: any[]) => void; error: (...args: any[]) => void; }; dayjs: typeof dayjs; slugify: (s: string) => any; URI: typeof URI; }; //# sourceMappingURL=js-template-sandbox.d.ts.map