/** * Secret simulator / honeytoken system (v4.7). * * Provides fake credential files and environment variables for * sandboxed analysis. Detects if packages/scripts attempt to read * or exfiltrate them. */ import type { Finding } from "./types.js"; /** * Check if content references honeytoken markers. * This detects code that would attempt to read simulated secrets. */ export declare function checkHoneytokenAccess(content: string, relativePath: string): Finding[]; /** * Get the honeytoken environment variables for sandbox injection. */ export declare function getHoneytokenEnv(): Record; /** * Get honeytoken file contents for sandbox filesystem. */ export declare function getHoneytokenFiles(): Array<{ path: string; content: string; }>; //# sourceMappingURL=secret-simulator.d.ts.map