import { _getCurrentPages as getCurrentPages } from './getCurrentPages'; import { getMemory, removeMemory, setMemory } from './memory'; import { canIUse } from './canIUse'; declare const jsapis: { getMemory: typeof getMemory; setMemory: typeof setMemory; removeMemory: typeof removeMemory; getCurrentPages: typeof getCurrentPages; canIUse: typeof canIUse; }; interface InternalOptions { name: keyof typeof jsapis; payload: any; success(res: any): void; fail(e: any): void; } export declare function __hy_internal__(options: InternalOptions): Promise; export {};