import { Skill } from "kolmafia"; import { Range } from "../../utils.js"; /** * @returns Whether you `have` the august scepter */ export declare function have(): boolean; export declare const SKILLS: readonly Skill[]; /** * @returns Today's august scepter skill */ export declare function todaysSkill(): Skill; /** * @param skillNum the Day of the skill you wish to check * @returns Whether we have cast this skill yet today */ export declare function getAugustCast(skillNum: Range<1, 32>): boolean; /** * @returns whether you have cast Today's august scepter skill */ export declare function getTodayCast(): boolean; /** * @param skillNum the Day of the skill you wish to check * @returns Whether we can cast this skill */ export declare function canCast(skillNum: Range<1, 32>): boolean;