export declare const nouns: string[];
export declare function getNounIndex(word: string): number;
export declare function getNounByIndex(index: number): string;
export declare function isNoun(word: string): boolean;
export declare function getRandomNoun(): string;
