/**
 * Generates an ID
 * @param length The length of the ID to generate
 * @param alphabet The alphabet to choose characters from. Does not dedupe multiples!
 */
declare function id(length?: number, alphabet?: string): string;

export { id };
