/**
 * Auto-generated from adjectives.txt. Do not edit manually.
 * Run 'bun run scripts/generate.ts adjectives Adjective' to regenerate.
 *
 * SPDX-FileCopyrightText: 2025-present Kriasoft
 * SPDX-License-Identifier: MIT
 */
export declare const adjectives: readonly ["good", "bad", "big", "small", "new", "old", "hot", "cold", "fast", "slow"];
export type Adjective = (typeof adjectives)[number];
/**
 * Converts a number to a Adjective codename
 *
 * @param input - The number to convert
 * @returns An Adjective name
 *
 * @example
 * ```typescript
 * import codename from "codenames/adjectives-10";
 * codename(1234) // "good"
 * ```
 */
export declare const codename: (input: number) => "good" | "bad" | "big" | "small" | "new" | "old" | "hot" | "cold" | "fast" | "slow";
export default codename;
//# sourceMappingURL=adjectives-10.d.ts.map