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