/**
 * 转整数
 * @param { String/Number } str 数值
 *
 * @return {number}
 */
declare const toInteger: (str: any) => any;
export default toInteger;
