export declare const numericUnicodeMap: Record<number, number>;
export declare const highSurrogateFrom = 0xd800;
export declare const highSurrogateTo = 0xdbff;
export declare const fromCodePoint: (...codePoints: number[]) => string;
export declare const getCodePointAt: (input: string, position: number) => number | undefined;
