/**
 * Returns true if the text contains valid CJK characters.
 */
declare function isCJKHanzi(text: string): boolean;
export default isCJKHanzi;
