export declare const rand: (str: string[]) => string; export declare const pickLastPunc: () => string; export declare const pluralize: (word: string) => string; export declare const normalize: (word: string) => string; export type GeneratorKey = 'noun' | 'aNoun' | 'nouns' | 'adjective' | 'anAdjective'; export type Generator = Record string>; export declare const generator: Generator;