/** * @ Author: Hanrea * @ version: 2023-03-06 13:14:21 * @ copyright: Vecmat (c) - */ /** * 编译模板字符串 * @param template * @param map * @param fallback * @example Templating('Hi ${person.info.name})', {"person":{"info":{"name":"test"}}}, "--") * @returns */ export declare function Templating(template: string, map: any, fallback?: string): string; /** * Convert the first letter in the value to uppercase * * @param {string} value * @returns {*} {string} */ export declare function ucFirst(value: string): string; /** * Convert special characters(> < " ') for entity character * * @param {string} value * @returns {*} {string} */ export declare function escapeHtml(value: string): string; /** * Convert entity value in value to(> < " ') * * @param {string} value * @returns {*} {string} */ export declare function escapeSpecial(value: string): string; /** * convert string to camelCase/pascalCase * * @param {string} input * @param {boolean} [pascalCase=false] * @returns {*} */ export declare function camelCase(input: string | string[], pascalCase?: boolean): string;