declare type Helper = (str: string) => string; export declare const addHelper: (name: string, fn: Helper) => void; export declare const interpolate: (template: string, vars: Record) => string; export {};