/** * Scroll-triggered animation helpers. * * @module bquery/motion */ import type { ScrollAnimateCleanup, ScrollAnimateOptions } from './types'; /** * Animate elements when they enter the viewport. * * @param elements - Target element(s) * @param options - Scroll animation configuration * @returns Cleanup function to disconnect observers */ export declare const scrollAnimate: (elements: Element | Iterable | ArrayLike, options: ScrollAnimateOptions) => ScrollAnimateCleanup; //# sourceMappingURL=scroll.d.ts.map