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