import { HangingGardenColumnIndex } from '../models/HangingGarden'; /** * Handles rendering of items in the Garden. * This is based on the renderItemContext supplied. * This will take care of rendering the look and interactivity off the item. * This included click handling and popovers. * * This hook is used by the Garden and is not intended to be used or implemented * outside the Garden component. */ declare const useItem: () => { renderItem: (item: T, index: number, columnIndex: number) => void; }; export default useItem;