import { DragEndEvent, DragMoveEvent } from '@dnd-kit/core'; import { Interpolation, Theme } from '@emotion/react'; import { Location, MaterialMove } from '@gamepark/rules-api'; import { ElementType } from 'react'; import { ItemContext } from '../../../locators'; import { DropAreaDescription } from './DropAreaDescription'; export declare class HexGridDropAreaDescription
extends DropAreaDescription
{ Component: ElementType; ignoreCoordinates: boolean; canDrop(move: MaterialMove
, location: Location
, context: ItemContext
): boolean; getBestDropMove(moves: MaterialMove
[], location: Location
, context: ItemContext
, event: DragMoveEvent | DragEndEvent): MaterialMove
;
get dropHighlight(): Interpolation