import type { CodeAudit } from './code-audit.js'; type CodeExecutionAuditRecord = { audit: CodeAudit; code: string; description: string; sessionHandle?: string; toolNames: readonly string[]; fetchBudget?: number; fetchCapable: boolean; }; /** * Full sandbox input for one code mode `execute`, keyed by the same `code_sha256` the * `mcpServer.codeExecuted` telemetry event carries, so a Grafana row resolves to this line. */ export declare function logCodeExecutionAudit({ audit, code, description, sessionHandle, toolNames, fetchBudget, fetchCapable, }: CodeExecutionAuditRecord): void; export {}; //# sourceMappingURL=code-execution-audit.d.ts.map