export declare const cleaver: import("kolmafia").Item; /** * Determines whether you currently `have` the June cleaver * * @returns Whether you currently `have` the June cleaver */ export declare function have(): boolean; /** * Determines the number of cleaver-combats it takes to get a particular encounter number. * * @param encounters The ordinal value of the June cleaver encounter you're asking about * @returns The number of cleaver-combats it takes to get a particular encounter number--this is agnostic of your current fights. */ export declare function getInterval(encounters?: number): number; /** * Determines the number of cleaver-combats it takes to get a particular encounter number, when a skip is in the mix * * @param encounters The ordinal value of the June cleaver encounter you're asking about, assuming you've skipped * @returns The number of cleaver-combats it would take to get a particular encounter after skipping. */ export declare function getSkippedInterval(encounters?: number): number; /** * Determines the amount of bonus elemental damage your cleaver currently grants * * @param element The element in question * @returns The bonus damage your cleaver currently gives for a given element. */ export declare function damage(element: "Hot" | "Stench" | "Sleaze" | "Spooky" | "Cold"): number; /** * Determines the number of times today you can skip a june cleaver choice * * @returns The number of additional times you can select option 4 in a cleaver choice today. */ export declare function skipsRemaining(): number; export declare const choices: readonly [1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475]; /** * Returns the current June cleaver queue; you are not currently able to encounter any June cleaver choice adventure in this list * * @returns An array consisting of the cleaver choice adventures currently in the queue. */ export declare function queue(): (typeof choices)[number][]; /** * Determines which choices are currently eligible to be encountered with your June cleaver * * @returns An array consisting of the cleaver choice adventures not currently in the queue. */ export declare function choicesAvailable(): (typeof choices)[number][];