import { Item } from "kolmafia"; import { Modifiers } from "../../modifier"; /** * @returns Whether or not you `have` The Eternity Codpiece */ export declare function have(): boolean; export declare const SLOTS: readonly import("kolmafia").Slot[]; /** * @returns An array of the current gems you have equipped in your codpiece, regardless of whether the codpiece is active */ export declare function currentGems(): Item[]; /** * Determines if a given item is a codpieceable gem * @param item The gem in question * @returns Whether or not it can be placed into your codpiece */ export declare function equippable(item: Item): boolean; /** * Parse the expected modifiers of a gem item into a `Modifiers` object * @param item The gem in question * @returns A `Modifiers` object representing the gem's enchantment in the codpiece */ export declare function modifiers(item: Item): Modifiers;