export declare const ALPHABET_LOWERCASE: readonly string[];
export declare const ALPHABET_UPPERCASE: readonly string[];
export declare const ALPHABET: readonly string[];
/**
 * Generates a random string of the given length using the provided symbols.
 */
export declare function randomString(length: number, symbols?: readonly string[]): string;
