import type { ReanimatedHTMLElement } from '../../../ReanimatedModule/js-reanimated';
import type { ExistingCSSAnimationProperties, ICSSAnimationsManager } from '../../types';
export default class CSSAnimationsManager implements ICSSAnimationsManager {
private readonly element;
private readonly componentName;
private attachedAnimations;
private unmountCleanupCalled;
constructor(element: ReanimatedHTMLElement, componentName?: string);
update(animationProperties: ExistingCSSAnimationProperties | null): void;
unmountCleanup(): void;
private detach;
private updateAttachedAnimations;
private setElementAnimations;
private removeAnimationsFromStyleSheet;
}
//# sourceMappingURL=CSSAnimationsManager.d.ts.map