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

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; }