import type { Animation, AnimationProperties, AnimationOptions } from './types'; /** * Dynamically import and return the appropriate animation module (GSAP or vanilla) * @returns {Promise} Animation module */ export declare function getAnimationModule(): Promise; /** * Helper to animate an element using the configured engine * @param {HTMLElement} element * @param {AnimationProperties} properties * @param {AnimationOptions} options * @returns {Promise} Animation instance */ export declare function animate(element: HTMLElement, properties: AnimationProperties, options?: AnimationOptions): Promise;