/**
 * Auto-generated from snacks.txt. Do not edit manually.
 * Run 'bun run scripts/generate.ts snacks Snack' to regenerate.
 *
 * SPDX-FileCopyrightText: 2025-present Kriasoft
 * SPDX-License-Identifier: MIT
 */
export declare const snacks: readonly ["chips", "nuts", "cookie", "pretzel", "popcorn", "candy", "fruit", "cheese", "cracker", "yogurt", "apple", "banana", "jerky", "granola", "raisin", "peanut", "almond", "cashew", "walnut", "pecan", "grape", "orange", "mango", "berry", "cherry", "peach", "plum", "carrot", "celery", "hummus", "olive", "pickle", "salsa", "guac", "dip", "bar", "mix", "trail", "cereal", "muffin", "donut", "bagel", "toast", "waffle", "pancake", "honey", "jam", "butter", "spread", "rice"];
export type Snack = (typeof snacks)[number];
/**
 * Converts a number to a Snack codename
 *
 * @param input - The number to convert
 * @returns A Snack name
 *
 * @example
 * ```typescript
 * import codename from "codenames/snacks-50";
 * codename(1234) // "grape"
 * ```
 */
export declare const codename: (input: number) => "orange" | "olive" | "peach" | "cherry" | "grape" | "plum" | "honey" | "rice" | "apple" | "cheese" | "butter" | "cookie" | "candy" | "chips" | "toast" | "yogurt" | "fruit" | "carrot" | "berry" | "mango" | "almond" | "peanut" | "cashew" | "walnut" | "muffin" | "bagel" | "waffle" | "pancake" | "pickle" | "donut" | "trail" | "nuts" | "pretzel" | "popcorn" | "cracker" | "banana" | "jerky" | "granola" | "raisin" | "pecan" | "celery" | "hummus" | "salsa" | "guac" | "dip" | "bar" | "mix" | "cereal" | "jam" | "spread";
export default codename;
//# sourceMappingURL=snacks-50.d.ts.map