declare function getLocalForageKeys(keyPrefix: string): Promise; declare function getLocalForageItem(key: string): Promise; declare function setLocalForageItem(key: string, originalData: T): Promise; declare function removeLocalForageItem(key: string): Promise; declare const _default: { localForage: LocalForage; getLocalForageItem: typeof getLocalForageItem; setLocalForageItem: typeof setLocalForageItem; removeLocalForageItem: typeof removeLocalForageItem; getLocalForageKeys: typeof getLocalForageKeys; }; export default _default;