export interface Permission { id: string; name: string; } export interface Role { id: string; name: string; permissions: Permission[]; }