export declare const stripNonHexidecimal: (s: string) => string; export declare const capitalize: (s: string) => string; export declare const ALPHABET = "abcdefghijklmnopqrstuvwxyz"; export declare const shorten: (str: string, maxLength: number) => string; export declare const getRandomAlphaString: (length: number) => string; export declare const getRandomAlphaNumericString: (length: number) => string; export declare const capitalSnakeToCamelCase: (str: string) => string;