import { Cue, Word, Animation, IOnlyOneWord, ICaptureIndicator } from '../index'; interface IHistoryItem { readonly word: Word; readonly opacity: number; readonly backgroundType?: string; readonly backgroundColor?: string; readonly cornerRadius?: number; } export declare class OnlyOneWord extends Animation { initialParameters: IOnlyOneWord; timings: number[]; wordsToUpdate: Word[]; offset: number; currentWord?: Word; history: IHistoryItem[]; initializationHistory: IHistoryItem[]; constructor(target: Cue, animation: IOnlyOneWord); initialize(): void; _cancelInitialize(): void; _render(time: number): void; _centerWord(word: Word): void; refresh(): void; cancel(): void; cancelOnce(): void; getCaptureIndicators(): ICaptureIndicator[]; _refresh(): void; } export {};