import type { Fingerprint, FeatureFlags } from '../types'; import { resolveFeatures } from './module'; export { resolveFeatures }; /** * Compose the single injection script: a self-contained IIFE that leaks no * globals. `FP` (the fingerprint) and `afp` (the stealth toolkit) are in scope * for every module. Each module is wrapped in its own try/catch so one failure * can never abort the rest. */ export declare function buildInjectionScript(fp: Fingerprint, features?: FeatureFlags): string; //# sourceMappingURL=injector.d.ts.map