import type { TomlTable } from "../config"; export type SafetyGateStatus = "pass" | "warn" | "fail"; export interface SafetyGateCheck { id: string; title: string; status: SafetyGateStatus; details: string[]; } export interface SafetyGateEvaluationOptions { config: TomlTable; env?: NodeJS.ProcessEnv; } export declare function evaluateSafetyGates(options: SafetyGateEvaluationOptions): SafetyGateCheck[];