import { Monster } from "kolmafia"; /** * See whether the player has a Rain-Doh item in some form * * @returns Whether the player has any Rain-Doh item */ export declare function have(): boolean; /** * Get Rain-Doh black box copies made today * * @returns Number of Rain-Doh black box copies made */ export declare function getRainDohBlackBoxCopiesMade(): number; /** * Get the current Rain-doh box monster * * @returns Current Rain-doh box monster */ export declare function getRainDohBlackBoxMonster(): Monster | null; /** * Use the Rain-Doh box full of monster (i.e. fight the monster probably) * * @returns Success */ export declare function useRainDohBlackBox(): boolean;