export declare const TEMPLATE_HELPERS: Record; export type CompileOptions = { helpers?: { [key: string]: (...args: any[]) => string; }; }; export declare const renderTemplate: (templatePath: string, context: object, options?: CompileOptions) => Promise;