import { AnimationOptions, AnimationProps, AnimationType } from '../types'; import { AnimationBase } from './base'; type Animation = AnimationBase; export declare class AnimationQueue extends AnimationBase { readonly queue: Animation[]; private isConnected; constructor(options: AnimationProps<'empty'>); connect(priorityConfig?: Computable): void; pushQueue(queue: AnimationQueue): void; pushAnimation(options: AnimationOptions): void; remove(id: string): Animation[] | undefined; init(): void; play(): void; end(): void; destroy(): void; } export {};