import { Location, MaterialItem } from '@gamepark/rules-api'; import { ItemContext } from '../locators'; export type LocationFocusRef
= { location: Location
; focusRef?: (ref: HTMLElement | null) => void; }; export declare function useItemLocations
(item: MaterialItem
, context: ItemContext
): LocationFocusRef
[]; export declare const useExpectedDropLocations:
() => Location
[];