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