export type CodeAudit = { sha256: string; length: number; flags: string; }; /** * Fingerprint model-supplied code for the audit trail. The body itself is never reported — it can * contain data the model already pulled from a customer API — so callers get a hash plus flags for * patterns worth reviewing. The sandbox blocks all of the flagged targets; a flag is an attempt. */ export declare function auditCode(code: string): CodeAudit; //# sourceMappingURL=code-audit.d.ts.map