/**
 * 去除字符串左边的空格
 *
 * @param {string} str 字符串
 * @return {string}
 */
declare function trimLeft(str: any): any;
export default trimLeft;
