import { NumberLike } from "../types.js";
/**
 * 阿拉伯数字转为中文数字 (仅支持正整数)
 *
 * @since 0.0.4
 * @param x             阿拉伯数字
 * @returns {string}    中文数字
 */
declare function number2chinese(x: NumberLike): string;
export { number2chinese };
