import { type FullSprigAPI, type GameState } from '../api.js'; import { type BaseEngineAPI } from '../base/index.js'; export * from './text.js'; export * from './tune.js'; export type WebEngineAPI = BaseEngineAPI & Pick & { getState(): GameState; }; export declare function webEngine(canvas: HTMLCanvasElement): { api: WebEngineAPI; state: GameState; cleanup(): void; }; //# sourceMappingURL=index.d.ts.map