import { WolfState, SlotId, PromptSlot, SlotStatus, SlotData } from '../types'; export declare const getAbilitiesCompleteOnCurrentTurn: (state: WolfState) => string[]; export declare const getfilledSlotsOnCurrentTurn: (state: WolfState) => SlotId[]; export declare const getPromptedSlotStack: (state: WolfState) => PromptSlot[]; export declare const getFocusedAbility: (state: WolfState) => string | null; export declare const getDefaultAbility: (state: WolfState) => string | null; export declare const getSlotStatus: (state: WolfState) => SlotStatus[]; export declare const getSlotData: (state: WolfState) => SlotData[]; export declare const getUnfilledEnabledSlots: (state: WolfState, focusedAbility: string) => SlotId[];