import { FarmingPetStatType, FarmingPets } from '../../constants/pets.js';
import { FarmingPetDefinition } from '../base-pet.js';
export declare class ElephantPet extends FarmingPetDefinition {
    get id(): FarmingPets;
    get name(): string;
    get wiki(): string;
    perLevelStats: {
        farming_fortune: {
            name: string;
            value: number;
            type: FarmingPetStatType;
        };
    };
}
