import { NarraLeaf } from "@narraleaf/shared"; import { SavedGame } from "narraleaf-react"; import { SavedGameMeta } from "./app.types"; export declare class GameAPI { protected readonly api: typeof window[typeof NarraLeaf]; constructor(api: typeof window[typeof NarraLeaf]); listSaves(): Promise; } export declare class AppAPI extends GameAPI { createRecovery(savedGame: SavedGame): Promise; quit(): void; }