import { HangingGardenColumn } from '../models/HangingGarden'; /** * This hook is used by the Garden and is not intended to be used or implemented * outside the Garden component. */ declare const useColumn: () => { renderColumn: (column: HangingGardenColumn, index: number) => void; }; export default useColumn;