import { MotionConfigState } from './types'; import { ComputedRef } from 'vue'; /** * Default motion configuration */ export declare const defaultConfig: MotionConfigState; /** * Context for sharing motion configuration with child components */ export declare const injectMotionConfig: = ComputedRef>(fallback?: T) => T extends null ? ComputedRef : ComputedRef, provideMotionConfig: (contextValue: ComputedRef) => ComputedRef, motionConfigInjectionKey: import('vue').InjectionKey>; export declare function useMotionConfig(): ComputedRef;