import { Entity, Animation, IUpdate, IUpdateParameters, ICaptureIndicator } from '../index'; declare type IHistoryItem = IUpdateParameters; export declare class Update extends Animation { defaultParameters: IUpdateParameters; newParameters: IUpdateParameters; history: IHistoryItem[]; constructor(target: Entity, animation: IUpdate); _render(time: number): void; refresh(): void; cancel(): void; getCaptureIndicators(): ICaptureIndicator[]; } export {};