export declare function isExtendingChar(ch: string): boolean; export declare function isWordChar(ch: string, wordChars?: RegExp): boolean; export declare const enum CharType { WORD = 0, SPACE = 1, OTHER = 2 } export declare function charType(ch: string, wordChars?: RegExp): CharType;