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