/** ## `percent` : 返回数字的百分比形式 * @example Usage * ```ts * const num = '0.1' * const p = percent(num) * console.log(p) // 10 * ``` * @throws TypeError : percent function only accept numberlike param * @category Math */ export declare function percent(input: string | number): number; //# sourceMappingURL=percent.d.ts.map