import { Rarity } from '../../constants/reforges.js';
import type { PlayerOptions } from '../../player/playeroptions.js';
import { BaseAccessory } from './base.js';
export declare class Magic8BallAccessory extends BaseAccessory {
    get skyblockId(): string;
    get name(): string;
    get wiki(): string;
    get maxRarity(): Rarity;
    baseStats: {
        farming_fortune: number;
    };
    computedStats: (_opt: PlayerOptions) => {
        farming_fortune: number;
    };
}
export declare class AtmosphericFilterAccessory extends BaseAccessory {
    get skyblockId(): string;
    get name(): string;
    get wiki(): string;
    get maxRarity(): Rarity;
    baseStats: {
        farming_fortune: number;
    };
}
