/** * @title: 获取支付列表 * @description: * @param {any} values * @return {*} * @Author: zhiwei.Wang * @Date: 2024-08-16 10:57 */ export declare const getPaymentList: (values: any) => Promise<{ message: string; status: string; paymentList: any[]; walletPass: any; }>; /** * @title: 过滤支付列表 * @description: * @param {any} list * @return {*} * @Author: zhiwei.Wang * @Date: 2024-08-16 10:57 */ export declare const filterPaymentList: (list: any[], platform: string | undefined, isApp: boolean, amount?: number) => { message: string; status: string; paymentList: any[]; walletPass: any; };