/**
 * Auto-generated from countries.txt. Do not edit manually.
 * Run 'bun run scripts/generate.ts countries Country' to regenerate.
 *
 * SPDX-FileCopyrightText: 2025-present Kriasoft
 * SPDX-License-Identifier: MIT
 */
export declare const countries: readonly ["china", "japan", "india", "france", "italy", "spain", "canada", "mexico", "brazil", "germany", "russia", "egypt", "greece", "turkey", "poland", "sweden", "norway", "korea", "iran", "peru", "iraq", "cuba", "chile", "kenya", "ghana", "mali", "nepal", "israel", "qatar", "oman"];
export type Country = (typeof countries)[number];
/**
 * Converts a number to a Country codename
 *
 * @param input - The number to convert
 * @returns A Country name
 *
 * @example
 * ```typescript
 * import codename from "codenames/countries-30";
 * codename(1234) // "russia"
 * ```
 */
export declare const codename: (input: number) => "turkey" | "mexico" | "china" | "japan" | "india" | "france" | "italy" | "spain" | "canada" | "brazil" | "germany" | "russia" | "egypt" | "greece" | "poland" | "sweden" | "norway" | "korea" | "iran" | "peru" | "iraq" | "cuba" | "chile" | "kenya" | "ghana" | "mali" | "nepal" | "israel" | "qatar" | "oman";
export default codename;
//# sourceMappingURL=countries-30.d.ts.map