/** * Checks if the given string is a valid regular expression pattern. * * @param pattern - The string to be tested as a regular expression pattern. * @returns {boolean} `true` if the pattern is a valid regular expression, otherwise `false`. */ export declare const isValidRegexPattern: (pattern: string) => boolean;