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