/** * Safari fingerprint definitions. * * Safari (WebKit) has a distinct TLS fingerprint: it enables GREASE, uses a * cipher order that prioritizes ChaCha20 less aggressively than Chrome, and * advertises a smaller set of signature algorithms. HTTP/2 settings are * conservative. Values mirror curl-impersonate's Safari 15.5 ground-truth * signature byte-for-byte (see tests/profiles-safari.test.ts for the wire-code * mapping). Safari 17 and 18 share this fingerprint; they differ only in * version string and User-Agent. */ import type { BrowserProfile } from "../types.js"; export declare const safari17: BrowserProfile; export declare const safari18: BrowserProfile; export declare const SafariProfiles: { readonly safari17: BrowserProfile; readonly safari18: BrowserProfile; }; //# sourceMappingURL=safari.d.ts.map