export type RiskLevel = 'safe' | 'medium' | 'high'; export interface RiskContext { cwd: string; workspaceRoot?: string; } export declare function classifyRisk(toolName: string, input: unknown, ctx: RiskContext): RiskLevel;