import { A as AnimationOptions, a as Animation, b as AOSAttributeKey } from './types-CQ3qrMsE.js'; export { c as AnchorPlacement, E as Easing, F as FadeAnimation, d as FlipAnimation, S as SlideAnimation, Z as ZoomAnimation } from './types-CQ3qrMsE.js'; /** * 原始 ScrollTrigger.refresh 封裝 * * @see https://greensock.com/docs/v3/Plugins/ScrollTrigger/static.refresh() */ declare function refreshScrollTrigger(safe?: boolean | undefined): void; interface AOSDataAttributes extends Partial> { "data-aos": Animation; } interface AOSAttributeOptions extends Partial { animation: Animation; } /** * 將動畫選項轉成可直接使用的 AOS data attributes * * > 不合法的值會被過濾掉 */ declare function toAOSProps(options?: AOSAttributeOptions): Partial; export { Animation, AnimationOptions, refreshScrollTrigger, toAOSProps };