import { type MainModule } from '../pkg/rcheevos'; export type InitInput = WebAssembly.Module | BufferSource | Response | string | URL; export declare let wasmInit: (() => InitInput) | undefined; export declare const setWasmInit: (arg: () => InitInput) => void; export declare const initializeWasm: (input: InitInput) => Promise;