/** * @returns Whether the player can access the raffle house. */ export declare function accessible(): boolean; /** * @returns tuple of First and Second place raffle prizes */ export declare function getRafflePrizes(): [import("kolmafia").Item, import("kolmafia").Item]; /** * @returns number of tickets player has purchased for today's raffle checked by the readout on raffle.php */ export declare function currentTickets(): number; /** * Purchase tickets up to a target total * @param quantity - target number of tickets to purchase */ export declare function buyTicketsUpTo(quantity: number): void;