/**
* 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.
*/declareconstisFullwidthCodePoint: (codePoint: number) =>boolean;
export { isFullwidthCodePoint asdefault };