/** Replaces all unescaped instances of a regex pattern in the given context, using a replacement string or callback. Doesn't skip over complete multicharacter tokens (only `\` plus its folowing char) so must be used with knowledge of what's safe to do given regex syntax. Assumes UnicodeSets-mode syntax. @param {string} expression Search target @param {string} needle Search as a regex pattern, with flags `su` applied @param {string | (match: RegExpExecArray, details: { context: 'DEFAULT' | 'CHAR_CLASS'; negated: boolean; }) => string} replacement @param {'DEFAULT' | 'CHAR_CLASS'} [context] All contexts if not specified @returns {string} Updated expression @example const str = '.\\.\\\\.[[\\.].].'; replaceUnescaped(str, '\\.', '@'); // → '@\\.\\\\@[[\\.]@]@' replaceUnescaped(str, '\\.', '@', Context.DEFAULT); // → '@\\.\\\\@[[\\.].]@' replaceUnescaped(str, '\\.', '@', Context.CHAR_CLASS); // → '.\\.\\\\.[[\\.]@].' */ export function replaceUnescaped(expression: string, needle: string, replacement: string | ((match: RegExpExecArray, details: { context: "DEFAULT" | "CHAR_CLASS"; negated: boolean; }) => string), context?: "DEFAULT" | "CHAR_CLASS"): string; /** Runs a callback for each unescaped instance of a regex pattern in the given context. Doesn't skip over complete multicharacter tokens (only `\` plus its folowing char) so must be used with knowledge of what's safe to do given regex syntax. Assumes UnicodeSets-mode syntax. @param {string} expression Search target @param {string} needle Search as a regex pattern, with flags `su` applied @param {(match: RegExpExecArray, details: { context: 'DEFAULT' | 'CHAR_CLASS'; negated: boolean; }) => void} callback @param {'DEFAULT' | 'CHAR_CLASS'} [context] All contexts if not specified */ export function forEachUnescaped(expression: string, needle: string, callback: (match: RegExpExecArray, details: { context: "DEFAULT" | "CHAR_CLASS"; negated: boolean; }) => void, context?: "DEFAULT" | "CHAR_CLASS"): void; /** Returns a match object for the first unescaped instance of a regex pattern in the given context, or `null`. Doesn't skip over complete multicharacter tokens (only `\` plus its folowing char) so must be used with knowledge of what's safe to do given regex syntax. Assumes UnicodeSets-mode syntax. @param {string} expression Search target @param {string} needle Search as a regex pattern, with flags `su` applied @param {number} [pos] Offset to start the search @param {'DEFAULT' | 'CHAR_CLASS'} [context] All contexts if not specified @returns {RegExpExecArray | null} */ export function execUnescaped(expression: string, needle: string, pos?: number, context?: "DEFAULT" | "CHAR_CLASS"): RegExpExecArray | null; /** Checks whether an unescaped instance of a regex pattern appears in the given context. Doesn't skip over complete multicharacter tokens (only `\` plus its folowing char) so must be used with knowledge of what's safe to do given regex syntax. Assumes UnicodeSets-mode syntax. @param {string} expression Search target @param {string} needle Search as a regex pattern, with flags `su` applied @param {'DEFAULT' | 'CHAR_CLASS'} [context] All contexts if not specified @returns {boolean} Whether the pattern was found */ export function hasUnescaped(expression: string, needle: string, context?: "DEFAULT" | "CHAR_CLASS"): boolean; /** Extracts the full contents of a group (subpattern) from the given expression, accounting for escaped characters, nested groups, and character classes. The group is identified by the position where its contents start (the string index just after the group's opening delimiter). Returns the rest of the string if the group is unclosed. Assumes UnicodeSets-mode syntax. @param {string} expression Search target @param {number} contentsStartPos @returns {string} */ export function getGroupContents(expression: string, contentsStartPos: number): string; export const Context: Readonly<{ DEFAULT: "DEFAULT"; CHAR_CLASS: "CHAR_CLASS"; }>;