import type { PiPaymentAppLike, PiPaymentRuntime } from './types'; /** * 初始化 SDK 内部多语言资源。 * UI 页面文案由 ui/eftpos/locales.ts 独立注册。 */ export declare const initPiPaymentLocales: () => void; /** * 把宿主 app-like 能力收敛成 SDK runtime。 * route adapter 只读取 runtime,不直接访问宿主 app。 */ export declare const createPiPaymentRuntime: (app: PiPaymentAppLike) => PiPaymentRuntime;