import { Slot, Ability, SlotId } from '../types'; export declare const findSlotByEntityName: (slotName: string, slots: Slot[]) => Slot | undefined; export declare const findAbilityByName: (abilityName: string, abilities: Ability[]) => Ability | undefined; export declare const findSlotInAbilitiesBySlotId: (abilities: Ability[], slotId: SlotId) => Slot | undefined; export declare const findIndexOfSlotIdsBySlotId: (array: SlotId[], slotId: SlotId) => number; export declare const findInSlotIdItemBySlotId: (array: T[], slotId: SlotId) => T;