import { FarmingPetStatType, FarmingPets } from '../../constants/pets.js';
import { FarmingPetDefinition } from '../base-pet.js';
import type { FarmingPetAbility } from '../types/pets.js';
export declare class HedgehogPet extends FarmingPetDefinition {
    get id(): FarmingPets;
    get name(): string;
    get wiki(): string;
    perLevelStats: {
        Speed: {
            name: string;
            value: number;
            type: FarmingPetStatType;
        };
    };
    perRarityLevelStats: {
        Legendary: {
            pest_kill_fortune: {
                name: string;
                value: number;
                type: FarmingPetStatType;
            };
            Overbloom: {
                name: string;
                value: number;
                type: FarmingPetStatType;
            };
        };
    };
    abilities: FarmingPetAbility[];
}
