/** * 裁剪所有空格 * * @param {String} str * @return {String} */ declare const trimSpace: (str: string) => string; export default trimSpace;