import { Skill, Item } from "kolmafia"; /** * * @param summonSkill The libram summoning skill * @returns map containing the chance of an item to be summoned */ export declare function expectedLibramSummon(summonSkill: Skill): Map; /** * * @returns map containing the chance of items to be summoned for each libram summoning skill available */ export declare function possibleLibramSummons(): Map>; /** * Determines the best libram to cast, based on expected meat value in mall * * @returns The best libram to cast, based on expected meat value in mall */ export declare function bestLibramToCast(): Skill | null;