interface AnimateWithClassOptions { className: string; animationName: string; } /** Adds a CSS class to an element and waits for the triggered animation to complete. */ export declare function animateWithClass(element: HTMLElement, { className, animationName }: AnimateWithClassOptions): Promise; export {};