import { Interpolation, Theme } from '@emotion/react'; import { Animation } from '@gamepark/react-client'; import { DeleteItemsAtOnce } from '@gamepark/rules-api'; import { ItemContext } from '../../../locators'; import { ItemAnimations } from './ItemAnimations'; import { Trajectory } from './Trajectory'; export declare class DeleteItemAtOnceAnimations

extends ItemAnimations { protected duration: number; protected trajectory?: Trajectory | undefined; constructor(duration?: number, trajectory?: Trajectory | undefined); getPreDuration(): number; getItemAnimation(context: ItemContext, animation: Animation>): Interpolation; getMovedItemAnimation(context: ItemContext, animation: Animation>): Interpolation; }