import { Monster } from "kolmafia"; import { Copier } from "../../Copier.js"; /** * @returns Whether the Winter Garden is our currently installed garden */ export declare function have(): boolean; /** * @returns Whether we have an unfinished ice sculpture hanging around */ export declare function haveUnfinishedIceSculpture(): boolean; /** * @returns Whether or not we've used an unfinished ice sculpture today */ export declare function isUnfinishedIceSculptureUsed(): boolean; /** * @returns Whether we're able to use an unfinished ice sculpture in combat right now */ export declare function couldUseUnfinishedIceSculpture(): boolean; /** * @returns Our current ice sculpture monster; `null` if none */ export declare function getUnfinishedIceSculptureMonster(): Monster | null; export declare const UnfinishedIceSculpture: Copier;