import { Item } from "kolmafia"; export declare const stickers: { readonly unicorn: Item; readonly apple: Item; readonly UPC: Item; readonly wrestler: Item; readonly dragon: Item; readonly rockband: Item; }; export type Sticker = keyof typeof stickers; /** * @returns Whether the player has the Summon Stickers skill */ export declare function have(): boolean; /** * @returns The player's current sticker weapon */ export declare function weapon(): Item | null; declare const weapons: { sword: Item; crossbow: Item; }; /** * Make a sword * * @param sticker Sticker to use when making the sword */ export declare function makeSword(sticker: Sticker): void; /** * Change weapon mode * * @param mode New weapon mode * @returns Success */ export declare function foldWeapon(mode: keyof typeof weapons): boolean; /** * Get current stickers on sticker weapon * * @returns Tuple of stickers */ export declare function currentStickers(): [Item, Item, Item]; /** * Set configuration for sticker weapon * * @param options Tuple of either sticker or null * @returns Resultant configuration */ export declare function setStickers(...options: [Sticker | null, Sticker | null, Sticker | null]): [Item, Item, Item]; export {};