declare function set(obj: any): any; declare function update(key: string, value: any): any; declare function get(): any; declare const jackpot: { get: typeof get; set: typeof set; update: typeof update; }; export default jackpot; export { set, update, get };