import type { Feature } from "./feature.js"; /** * Global lazy-loaded features registry. * Updated by the Motion component when LazyMotion context provides features. * Read by MotionState during feature initialization. */ export declare const lazyFeatures: Array; /** * Update the global lazy features array. * Called from the Motion component when LazyMotion context features change. */ export declare function updateLazyFeatures(features: Array): void;