import { Dictionary } from "./index"; declare enum Word { Adjective = "adjectives", Noun = "nouns", Verb = "verbs" } interface Options { words?: number; separator?: string; salt?: number; saltType?: "numbers" | "letters" | "mixed"; dictionary?: "default" | "rugged" | Dictionary; saltLength?: number; subset?: "manly"; } export declare function randomFromArray(arr: any[]): any; export declare function getPattern(count?: number): Word[]; export declare function getSalt(saltType: Options["saltType"], length: number): string; export declare function generate(opts?: Options): string; export {};