/** Type definitions for the role and escalation chain service. */ export interface EscalationChain { source_role: string; target_role: string; } export interface RoleDetail { role: string; user_count: number; chain_count: number; workflow_count: number; }