import { Crop } from '../constants/crops.js';
import { Rarity } from '../constants/reforges.js';
import { Skill } from '../constants/skills.js';
import { UpgradeableInfo } from '../fortune/upgradeable.js';
export interface FarmingAccessoryInfo extends UpgradeableInfo {
    name: string;
    wiki: string;
    family?: string;
    familyOrder?: number;
    maxRarity: Rarity;
    crops?: Crop[];
    skillReq?: Partial<Record<Skill, number>>;
}
export declare const FARMING_ACCESSORIES_INFO: Partial<Record<string, FarmingAccessoryInfo>>;
