import { Location, Monster, Item } from "kolmafia"; export declare const orb: Item; /** * Determines whether you `have` the Miniature Crystal Ball * * @returns Whether you `have` the Miniature Crystal Ball */ export declare function have(): boolean; /** * @returns A map keyed by locations and whose values are monsters, representing all active orb predictions */ export declare function getPrediction(): Map; /** * Ponders your orb (if it is able to do so safely) and then returns a Map keyed by location consisting of extant predictions * * @returns A map of all predictions currently active in an adventurer's miniature crystal ball, after visiting the "ponder" URL to refresh them. */ export declare function ponder(): Map;