import type { SDK, Player } from './sdk'; interface Games { sdk: SDK; player: Player; authorized: boolean; data: { get: () => Promise; set: (data: unknown) => Promise; }; stats: { get: () => Promise>; set: (data: Record) => Promise; }; } declare const get: () => Games; declare const get_set: () => (data: Games) => void; export { get, get_set }; export type { Games };