import { WalletPass, WalletBalance } from './types'; /** * 获取 wallet 列表 * @param params * @returns */ export declare const getWalletList: () => Promise; /** * 获取钱包余额 * @returns */ export declare const getWalletBalance: () => Promise; /** * 批量获取钱包余额信息 */ export declare const batchGetWalletBalance: (walletIds: string[]) => Promise | null>; /** * @title: 获取钱包店铺列表 * @description: * @return {*} * @Author: WangHan * @Date: 2025-06-09 11:12 */ export declare const getWalletShopList: (params: any) => Promise; /** * @title: 获取持有人列表 * @description: 获取持有人列表 * @param params 查询参数 * @returns 持有人列表 */ export declare const getHolderList: (params: any) => Promise; /** * 更新持有人 * @param params 更新参数 * @returns 更新结果 */ export declare const updateWalletHolder: (id: string, params: any) => Promise; /** * 获取表单配置 * @param formId 表单ID * @returns 表单配置 */ export declare const getFormConfig: (formId: string) => Promise;