import { IStorage, IBridgeOptions } from './interface'; /** * 读取本地数据 * * @param {IBridgeOptions} { * key, * value, * scope, * domain, * multi_param, * success, * fail, * complete * } */ declare function getStorageSync({ key, scope, domain, multi_param, success, fail, complete }: IBridgeOptions): void; /** * 读取本地数据 * 一个异步接口,支持 Promise 化使用 * @param {IBridgeOptions} { key, scope, domain, multi_param } * @returns */ declare function getStorage({ key, scope, domain, multi_param }: IBridgeOptions): Promise; export { getStorage, getStorageSync };