/**
 * 获取所有中文数字读法
 */
export declare const getAllNumberReads: (input: string) => {
    label: string;
    value: string;
}[];
/**
 * 将中文数字读法（如：一百八十六）反向转为数字（如：186）
 * 暂只支持简体数字读法，不支持金额/大写/序列等
 */
export declare const chineseToNumber: (chinese: string) => number | null;
/**
 * 支持 getAllNumberReads 返回的所有读法反向转为数字
 */
export declare const chineseReadToNumber: (read: string) => number | null;
