import type { Fingerprint } from '../types'; /** * Build the patch that runs *inside* Web Workers. A worker has its own realm * with a fresh `WorkerNavigator`, so detectors spin one up to read un-spoofed * values (notably `hardwareConcurrency`). We reuse the worker-safe modules — * each already references only `navigator`/`Intl`/`WebGLRenderingContext`, all * of which exist in workers — plus OffscreenCanvas noise. Modules touching * `window`/`document`/`screen` are excluded. */ export declare function buildWorkerScript(fp: Fingerprint): string; //# sourceMappingURL=worker-script.d.ts.map