/**
 * Auto-generated from gems.txt. Do not edit manually.
 * Run 'bun run scripts/generate.ts gems Gem' to regenerate.
 *
 * SPDX-FileCopyrightText: 2025-present Kriasoft
 * SPDX-License-Identifier: MIT
 */
export declare const gems: readonly ["ruby", "pearl", "jade", "opal", "amber", "diamond", "emerald", "gold", "silver", "topaz", "crystal", "garnet", "coral", "onyx", "agate", "jasper", "quartz", "citrine", "zircon", "beryl", "spinel", "peridot", "jet", "gem", "stone", "rock", "jewel", "ore", "lapis", "azurite", "calcite", "pyrite", "iolite", "kunzite", "kyanite", "axinite", "barite", "biotite", "bixbite", "boleite", "bornite", "brucite", "cuprite", "epidote", "euclase", "galena", "gypsum", "halite", "howlite", "jadeite"];
export type Gem = (typeof gems)[number];
/**
 * Converts a number to a Gem codename
 *
 * @param input - The number to convert
 * @returns A Gem name
 *
 * @example
 * ```typescript
 * import codename from "codenames/gems-50";
 * codename(1234) // "spinel"
 * ```
 */
export declare const codename: (input: number) => "gold" | "silver" | "coral" | "amber" | "ruby" | "jade" | "pearl" | "emerald" | "garnet" | "topaz" | "onyx" | "jasper" | "agate" | "quartz" | "beryl" | "citrine" | "jet" | "opal" | "diamond" | "crystal" | "zircon" | "spinel" | "peridot" | "gem" | "stone" | "rock" | "jewel" | "ore" | "lapis" | "azurite" | "calcite" | "pyrite" | "iolite" | "kunzite" | "kyanite" | "axinite" | "barite" | "biotite" | "bixbite" | "boleite" | "bornite" | "brucite" | "cuprite" | "epidote" | "euclase" | "galena" | "gypsum" | "halite" | "howlite" | "jadeite";
export default codename;
//# sourceMappingURL=gems-50.d.ts.map