import { Location, Monster } from "kolmafia"; /** * Determines whether you `have` the skill Comprehensive Cartography * * @returns Whether you currently `have` the skill */ export declare function have(): boolean; /** * Map a particular monster in a particular location * You'll need to set your autoattack or CCS in advance of using this. Additionally, it will loop to try to avoid time-spinner pranks or zone intro adventures * * @param location The location to target * @param monster The monster to target * @returns Whether we successfully mapped the monster */ export declare function mapMonster(location: Location, monster: Monster): boolean; /** * @returns The number of monsters you can map today */ export declare function availableMaps(): number; /** * @returns Whether or not `Map the Monsters` is currently active */ export declare function currentlyMapping(): boolean;