export type TemplateVariables = Record; /** * Render a mustache template with the given variables. * HTML escaping is disabled. */ export declare function renderTemplate(template: string, variables: TemplateVariables): string;