import { Effect, Item } from "kolmafia"; /** * Find the name length required to get an effect from The Mad Tea Party * * @param effect The effect to check * @returns The number of characters required to get an effect */ export declare function findTeaPartyHatLength(effect: Effect): number; /** * Find all hats that will get an effect from The Mad Tea Party * * @param effect The effect to check * @returns An array of equippable hats */ export declare function findTeaPartyHats(effect: Effect): Item[]; /** * Check if a hat is available to get an effect from The Mad Tea Party * * @param effect The effect to check * @returns If any valid hat is in inventory */ export declare function haveTeaPartyHat(effect: Effect): boolean; /** * Try to get an effect from The Mad Tea Party * * @param effect The effect to get * @returns If the request was successful */ export declare function tryTeaPartyBuff(effect: Effect): boolean;