import { PayMethod, PayMethodGroup } from '../types'; /** * 处理支付方式列表 * @param payMethodList 支付方式列表 * @returns 处理后的支付方式列表 */ export declare const handlePayMethodList: (payMethodList: PayMethod[]) => PayMethodGroup[]; /** * inputNumber过滤 * @param value * @returns string */ export declare const limitDecimals: (value: any) => any;