/**
 * TlsFingerprint — optional TLS fingerprint mimicry (stub).
 *
 * In a full implementation this would configure the TLS ClientHello to
 * match a known browser or CLI fingerprint (JA3/JA4), making the TLS
 * handshake indistinguishable from a genuine Claude Code session.
 *
 * This is a placeholder: the transformRequest is a no-op pass-through.
 * Real JA3 mimicry requires a native TLS library (e.g. curl-impersonate
 * or a custom Node.js TLS agent), which is out of scope for the initial
 * implementation.
 */
import type { CloakingPlugin, TlsFingerprintOptions } from "../../../types/index.js";
export declare function createTlsFingerprint(options?: TlsFingerprintOptions): CloakingPlugin;
