import type { FeatureBundle } from "../../features/dom-animation.js"; import type { Snippet } from "svelte"; type FeaturesProp = FeatureBundle | Promise | (() => Promise); interface LazyMotionProps { children: Snippet; features: FeaturesProp; strict?: boolean; } declare const LazyMotion: import("svelte").Component; type LazyMotion = ReturnType; export default LazyMotion;