import React from 'react'; import { EngineAPI } from '../../..'; import { InventoryItem } from '../../inventory'; /** * Reusable inventory/hotbar slot component. * Handles optional cooldown overlay, active styling and click/select events. */ export interface InventorySlotProps { index?: number; item: InventoryItem | null; api: EngineAPI; size: number; active?: boolean; showCooldown?: boolean; onSelect?: (index?: number) => void; } declare const InventorySlot: React.FC; export default InventorySlot; //# sourceMappingURL=InventorySlot.d.ts.map