import './animations.css'; interface Props { root?: Document | Element | null; rootMargin?: string; threshold?: number | number[]; } /** * Mount once in your root layout to observe `[data-aoe]` elements and apply the `aoe` class when they enter the viewport. Dynamically added elements are registered automatically. * *   * * @prop root {Document | Element | null} [null] - Intersection observer root element. Defaults to the browser viewport when null. * @prop rootMargin {string} ['0px'] - Root margin around the observer root (CSS margin syntax). * @prop threshold {number | number[]} [0.3] - Visibility ratio (0–1) at which the observer callback runs. */ declare const Index: import("svelte").Component; type Index = ReturnType; export default Index; //# sourceMappingURL=index.svelte.d.ts.map