export type CharPredicate = (char: string) => boolean; export declare const isLetter: CharPredicate; export declare const isWhitespace: CharPredicate; export declare const isPunctuation: CharPredicate;