//#region src/common/data/xrx.d.ts declare function regExpString(rx: string | RegExp): string; declare function regExpEscape(str: string): string; declare class XRX { lookBehind: any; namedGroups: Record; names: string[]; rx: RegExp; constructor(pattern: string | RegExp, flags?: string); get lastIndex(): number; set lastIndex(index: number); _handleMatch(m: any): any; exec(str: string): any; execAll(str: string): any[]; replace(str: string, replacement: string | ((m: string) => string)): string; } //#endregion export { regExpEscape as n, regExpString as r, XRX as t }; //# sourceMappingURL=xrx-DN94xdqR.d.mts.map