import { Size, Options } from './types.js'; import { Builder } from './builder.js'; /** * Initiates an iterable builder for generating pronounceable words. * Omitting size generates mixed lengths. */ declare function generate(size?: Size, options?: Options): Builder; declare const shortwords: typeof generate & { /** * Returns a single array of words from the most recent run. */ prev(): string[] | undefined; /** * Returns multiple arrays of words, one for each run so far. */ history(): string[][]; }; export default shortwords; //# sourceMappingURL=index.d.ts.map