import { Intent, PlatformCommands } from '../types'; export declare class SafetyChecker { private destructivePatterns; private suspiciousPatterns; private secretPatterns; checkIntent(intent: Intent): SafetyResult; checkCommands(commands: PlatformCommands): SafetyResult; sanitizeCommand(command: string): string; } export interface SafetyResult { safe: boolean; risks: string[]; requiresConfirmation: boolean; confidence: number; } //# sourceMappingURL=safety-checker.d.ts.map