import { CallAppInstance } from '../../index'; import { AppInfo } from '../config'; export type App5 = { action?: { openApp: (...res: any[]) => void; isInstallApp: (...res: any[]) => void; }; common?: { appVersion?: string; }; }; export declare const load5SDK: () => Promise; export declare const sdk5: { getVersion(app: App5): string | undefined; isInstallApp: (app: App5, options?: {}) => Promise; openApp(app: App5, options?: {}): void | undefined; }; /** * app内打开 * @param instance * @param appInfo */ export declare const openZZIn5: (instance: CallAppInstance, appInfo: AppInfo) => void;