import { Modifiers } from "../../modifier.js"; import { NumericModifier } from "../../modifierTypes.js"; /** * @returns Whether or not the horsery is available */ export declare function have(): boolean; export type Horse = "pale" | "dark" | "normal" | "crazy"; /** * @returns Your current horse; `null` if you are horseless */ export declare function current(): Horse | null; /** * @param horse The horse to change to * @returns Whether, at the end of all things, that is your horse */ export declare function changeHorse(horse: Horse): boolean; /** * @returns a `Modifiers` object consisting of the crazy horse's stats today */ export declare function crazyHorseStats(): Modifiers;