import type { Store } from "redux"; import type { PersistConfig } from "./types/PersistConfig"; declare function initStore(store: Store, configs: PersistConfig): Promise<{ store: Store; storage: import("./types/MobileStorage").MobileStorageOptions; key: string; }>; export { initStore };