UNPKG

aura-glass

Version:

A comprehensive glassmorphism design system for React applications with 142+ production-ready components

24 lines 792 B
import React from 'react'; export interface AnimationContextType { reducedMotion: boolean; setReducedMotion: (reduced: boolean) => void; defaultSpring: { stiffness: number; damping: number; mass: number; }; } export declare const AnimationContext: React.Context<AnimationContextType>; export interface AnimationProviderProps { children: React.ReactNode; defaultReducedMotion?: boolean; defaultSpring?: { stiffness: number; damping: number; mass: number; }; } export declare const AnimationProvider: React.FC<AnimationProviderProps>; export declare const useAnimation: () => AnimationContextType; export declare const useAnimationContext: () => AnimationContextType; //# sourceMappingURL=AnimationContext.d.ts.map