import { inferN4Cpu, inferN4WebGPU, verifyN4RuntimeParity } from '@holoscript/core/world-model'; interface N4BrowserParityArtifact { readonly protocol: 'holoscript.n4-runtime-parity.v0.1.0'; readonly executionMode: 'webgpu'; readonly navigatorGpu: true; readonly adapterAcquired: true; readonly deviceAcquired: true; readonly dispatchCompleted: true; readonly readbackCompleted: true; readonly adapter: Record; readonly userAgent: string; readonly cpu: Awaited>; readonly webgpu: Awaited>; readonly parity: ReturnType; readonly tensorChecksum: string; } declare global { interface Window { __N4_WEBGPU_PARITY_ARTIFACT__?: N4BrowserParityArtifact; __N4_WEBGPU_PARITY_ERROR__?: { name: string; message: string; stack?: string; }; } } export declare function runN4BrowserWebGPUParity(): Promise; export {}; //# sourceMappingURL=n4-webgpu-parity.entry.d.ts.map