declare enum RomanNumerals { I = 1, V = 5, X = 10, L = 50, C = 100, D = 500, M = 1000 } type RomanNumeral = keyof typeof RomanNumerals; declare const BracketPairMapping: Map; export { BracketPairMapping, type RomanNumeral, RomanNumerals };