/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface ScrollRevealProps extends JSX.HTMLAttributes { /** IntersectionObserver threshold, 0 to 1. */ threshold?: number; /** Reveal once and stop observing. */ once?: boolean; } /** * Reveals its children when they scroll into view. * * @example *

Fades in on scroll.

*/ export declare const ScrollReveal: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=ScrollReveal.d.ts.map