interface IRole { _id?: string; category: string; name: string; permissions: string; descripcion: string; active: boolean; } export type { IRole as I };