import type { SafetyGate, SafetyCheckResult } from "../safety-gate.js"; /** * Run a safety gate check for a tool call. * Returns the check result, or null if no gate is configured or the tool * does not require a check. */ export declare function checkSafety(safetyGate: SafetyGate | undefined, toolCallId: string, toolName: string, toolArgs: Record): Promise; //# sourceMappingURL=safety.d.ts.map