export declare const adjectives: string[];
export declare function getAdjectiveIndex(word: string): number;
export declare function getAdjectiveByIndex(index: number): string;
export declare function isAdjective(word: string): boolean;
export declare function getRandomAdjective(): string;
