export declare enum types { ROOT = 0, GROUP = 1, POSITION = 2, SET = 3, RANGE = 4, REPETITION = 5, REFERENCE = 6, CHAR = 7 } export interface Token { type: types; [key: string]: any; } export declare const ret: (regexpStr: string) => Token; //# sourceMappingURL=ret.d.ts.map