import { Monster } from "kolmafia"; import { Copier } from "../../Copier.js"; /** * @returns Is the love tunnel available? */ export declare function have(): boolean; /** * @returns Have we visited the love tunnel yet today? */ export declare function isUsed(): boolean; /** * @returns Do we `have` an Enamorang? */ export declare function haveLovEnamorang(): boolean; /** * @returns How many enamorangs have we used today? */ export declare function getLovEnamorangUses(): number; /** * @returns Can we currently use an enamorang? */ export declare function couldUseLoveEnamorang(): boolean; /** * @returns The Monster currently in our enamorang; `null` for none */ export declare function getLovEnamorangMonster(): Monster | null; export declare const LovEnamorang: Copier; type LOVEquipment = "LOV Eardigan" | "LOV Epaulettes" | "LOV Earring"; type LOVEffect = "Lovebotamy" | "Open Heart Surgery" | "Wandering Eye Surgery"; type LOVExtra = "LOV Enamorang" | "LOV Emotionizer" | "LOV Extraterrestrial Chocolate" | "LOV Echinacea Bouquet" | "LOV Elephant" | "toast" | null; /** * Fight all LOV monsters and get buffs/equipment. * * @param equipment Equipment to take from LOV. * @param effect Effect to take from LOV. * @param extra Extra item to take from LOV. */ export declare function fightAll(equipment: LOVEquipment, effect: LOVEffect, extra: LOVExtra): void; export {};