import { FeatureBundle } from '../../features/dom-animation'; import { Ref } from 'vue'; export type LazyMotionContext = { features: Ref>; strict: boolean; }; export declare const useLazyMotionContext: (fallback?: T) => T extends null ? LazyMotionContext : LazyMotionContext, lazyMotionContextProvider: (contextValue: LazyMotionContext) => LazyMotionContext;