import type { Item } from './types'; export declare function registerItem(type: string, item: Item): void; export declare function getItem(type: string): Item | undefined; export declare function getItems(): string[];