/** * @typedef {object} TemplateData Represents an object mapping template * keys to string values, where the template keys will be replaced with * the provided values in the source string when given to a Lang resource * function like [Lang.res()]{@link module:Lang.res} */ export declare type TemplateData = { [key: string]: string; };