import * as PIXI from 'pixi.js-legacy'; import { HangingGardenColumnIndex } from '../models/HangingGarden'; /** * Handles extended descriptions for item when columns is expanded. * Only apply if expanded columns are in use. * * * This hook is used by the Garden and is not intended to be used or implemented * outside the Garden component. */ declare const useItemDescription: () => { renderItemDescription: (item: T, index: number, columnIndex: number) => void; getRenderedItemDescription: (item: T) => PIXI.Container; }; export default useItemDescription;