export declare enum Crop {
    Cactus = "CACTUS",
    Carrot = "CARROT_ITEM",
    CocoaBeans = "INK_SACK:3",
    Melon = "MELON",
    Mushroom = "MUSHROOM_COLLECTION",
    NetherWart = "NETHER_STALK",
    Potato = "POTATO_ITEM",
    Pumpkin = "PUMPKIN",
    SugarCane = "SUGAR_CANE",
    Wheat = "WHEAT",
    Seeds = "WHEAT_SEEDS"
}
export interface CropInfo {
    name: string;
    npc: number;
    drops: number;
    breaks?: number;
    replenish?: boolean;
    exportable?: boolean;
    startingTool: string;
}
export declare const CROP_INFO: Record<Crop, CropInfo>;
export declare const MAX_CROP_FORTUNE: Record<Crop, number>;
export declare const LIST_OF_CROPS: Exclude<Crop, Crop.Seeds>[];
export declare const LIST_OF_CROPS_WITH_SEEDS: Crop[];
export declare const EXPORTABLE_CROP_FORTUNE = 12;
