import type { IObjectOf } from "@thi.ng/api"; /** * Object with whitespace characters as keys and their values set to * true. All others undefined. */ export declare const WS: IObjectOf; /** * Object with 0-9 characters as keys and their values set to true. All * others undefined. */ export declare const DIGITS: Readonly>; /** * Object with hex digit characters (upper & lower case versions) as * keys and their values set to true. All others undefined. */ export declare const HEX: Readonly>; /** * Object with ASCII lowercase characters as keys and their values set * to true. All others undefined. */ export declare const LOWER: Readonly>; /** * Object with ASCII uppercase characters as keys and their values set * to true. All others undefined. */ export declare const UPPER: Readonly>; /** * Combination of {@link UPPER} and {@link LOWER}. */ export declare const ALPHA: Readonly<{ [x: string]: boolean; }>; /** * Combination of {@link ALPHA} and {@link DIGITS} and '_'. */ export declare const ALPHA_NUM: IObjectOf; /** * Object with ASCII punctuation characters as keys and their values set * to true. All others undefined. */ export declare const PUNCTUATION: Readonly>; //# sourceMappingURL=groups.d.ts.map