declare enum ContextType {
    Braces = 0,
    Class = 1,
    Literal = 2,
    Negation = 3,
    PatternList = 4
}
export default ContextType;
