import { Interpolation, Theme } from '@emotion/react'; import { Animation } from '@gamepark/react-client'; import { GridBoundaries, MaterialItem, MoveItem } from '@gamepark/rules-api'; import { ItemContext } from '../../../locators'; import { ItemAnimations } from './ItemAnimations'; import { MaterialGameAnimationContext } from './MaterialGameAnimations'; import { Trajectory } from './Trajectory'; export declare class MoveItemAnimations

extends ItemAnimations { protected duration: number; protected droppedItemDuration: number; protected trajectory?: Trajectory | undefined; constructor(duration?: number, droppedItemDuration?: number, trajectory?: Trajectory | undefined); getPreDuration(move: MoveItem, context: MaterialGameAnimationContext): number; getItemAnimation(context: ItemContext, animation: Animation>, boundaries: GridBoundaries): Interpolation; getMovedItemAnimation(context: ItemContext, animation: Animation>, boundaries: GridBoundaries): Interpolation; getItemIndexAfterMove({ rules }: ItemContext, move: MoveItem): number; getChildItemAnimation(item: MaterialItem, context: ItemContext, animation: Animation>): Interpolation; }