import { Amount, ModeEnum } from '../const'; import { State } from '../store'; /** * @title: payo 步骤信息 * @description: * @return {*} * @Author: hongbing.wang * @Date: 2024-08-12 10:19 */ export declare const getStep: (mode?: ModeEnum) => State['steps']; /** * @title: 初始化 payo 数据 * @description: * @Author: hongbing.wang * @Date: 2024-08-12 10:19 */ declare const _default: (params: any) => State; export default _default; /** * @title: payo 金额信息 * @description: 在 amount 页面设置则使用 pay ,如果有 setting 则使用 setting 信息 ,都没有则设置0 * @param {State} store : 全局store数据管理 * @Author: hongbing.wang * @Date: 2024-08-12 10:24 */ export declare function getAmonunt(store: State): Amount;