/**
 * Encodes a single character as a four-digit hexadecimal Unicode escape sequence.
 *
 * @param character - The character to encode.
 * @returns A string in the form `\uXXXX` representing the character's Unicode code point.
 */
export declare const RegexEncode: (character: string) => string;
