/** * Shared approval presets for tool governance. * * Canonical source — imported by all surfaces (web, desktop, mobile). * Each preset defines the risk thresholds for automatic tool approval. */ export type ApprovalPreset = "cautious" | "balanced" | "autonomous"; export interface ApprovalPresetConfig { label: string; description: string; maxRiskLevel: number; requireApprovalAbove: number; denyAbove: number; } export declare const APPROVAL_PRESET_CONFIGS: Record; //# sourceMappingURL=approval-presets.d.ts.map