export declare function isWhitespaceCp(codePoint: number): boolean;
export declare function isApostropheCp(codepoint: number): codepoint is 39 | 8217;
export declare function isHyphenCp(codepoint: number): codepoint is 45 | 8208 | 8209 | 1418 | 12448;
export declare function isPunctuationCp(codepoint: number): boolean;
export declare function isPunctuation(symbol: string): boolean;
