import { type Proficiency } from '../Sheet'; import { type SkillName } from '../Skill'; import type { Static } from '../Static'; import type { Role } from './Role'; import type { SelectSkillGroup } from './RoleInterface'; import { RoleName } from './RoleName'; export type RoleStatic = Static; export declare abstract class Roles { static map: Record; static getAll(): RoleStatic[]; static get(roleName: RoleName): RoleStatic; }