export declare enum PRIORITY { ROOT = 0, CATCHALL = 1, PATHPARAM = 2, REGEX = 3, EXACTMATCH = 4 } export declare const getNodePriority: (nodeType: PRIORITY) => number;