import type { Item } from "../meta/types"; import Collection from "./Collection"; export declare const itemNameMap: Map; type ItemResolvable = number | string; export interface ItemCollection { [index: string]: Item; } export declare const CLUE_SCROLLS: number[]; export declare const CLUE_SCROLL_NAMES: string[]; export declare const USELESS_ITEMS: number[]; declare class Items extends Collection { get(item: ItemResolvable): Item | undefined; private resolveID; } declare const itemsExport: Items; export default itemsExport; //# sourceMappingURL=Items.d.ts.map