/**
* Check if the given code point is a fullwidth character.
* @param codePoint The code point to check.
* @returns Whether the code point is a fullwidth character.
*/
declare const isFullwidthCodePoint: (codePoint: number) => boolean;
export { isFullwidthCodePoint as default };
