/**
 * Auto-generated from emotions.txt. Do not edit manually.
 * Run 'bun run scripts/generate.ts emotions Emotion' to regenerate.
 *
 * SPDX-FileCopyrightText: 2025-present Kriasoft
 * SPDX-License-Identifier: MIT
 */
export declare const emotions: readonly ["love", "hate", "joy", "sad", "fear", "mad", "happy", "angry", "glad", "calm"];
export type Emotion = (typeof emotions)[number];
/**
 * Converts a number to a Emotion codename
 *
 * @param input - The number to convert
 * @returns An Emotion name
 *
 * @example
 * ```typescript
 * import codename from "codenames/emotions-10";
 * codename(1234) // "love"
 * ```
 */
export declare const codename: (input: number) => "happy" | "sad" | "angry" | "calm" | "love" | "hate" | "joy" | "fear" | "mad" | "glad";
export default codename;
//# sourceMappingURL=emotions-10.d.ts.map