import { type ActiveRecord, type RuntimeAction } from '@oinone/kunlun-engine'; import { type ExpressionRunParam } from '@oinone/kunlun-expression'; import { NavigateOptions } from '@oinone/kunlun-router'; export declare function executeMapping(getterParameters: ExpressionRunParam, activeRecord: ActiveRecord, mapping: Record): void; /** * FIXME: 未解决问题 * 1. 当前模型无table视图,跳转失效 * 2. 未处理浏览器点击回退 * 3. 当前模型有多个table视图,跳转的视图可能是错误的 * */ export declare const gotoPrevPage: (action: RuntimeAction, executeViewAction: Function, navigate?: (segments: string, options?: NavigateOptions) => void) => void;