/** * Custom hook for creating a fade animation state. * This hook uses the useAnimationState hook to create an animation state that transitions from an opacity of 0 to an opacity of 1. * This creates a fade-in effect. * * @returns An animation state that creates a fade-in effect. */ export declare const useFade: () => import("moti").UseAnimationState>; /** * Custom hook for creating a scale and fade animation state. * This hook uses the useAnimationState hook to create an animation state that transitions from a scale of 0.5 and opacity of 0 to a scale of 1 and opacity of 1. * This creates a combined effect of scaling and fading in. * * @returns An animation state that creates a scale and fade-in effect. */ export declare const useScaleFade: () => import("moti").UseAnimationState>; /** * Custom hook for creating a slide animation state. * This hook uses the useAnimationState hook to create an animation state that transitions from a translateX of -100 to a translateX of 0. * This creates a slide-in effect. * * @returns An animation state that creates a slide-in effect. */ export declare const useSlide: () => import("moti").UseAnimationState>; /** * Custom hook for creating a slide and fade animation state. * This hook uses the useAnimationState hook to create an animation state that transitions from a translateX of -100 and opacity of 0 to a translateX of 0 and opacity of 1. * This creates a combined effect of sliding and fading in. * * @returns An animation state that creates a slide and fade-in effect. */ export declare const useSlideFade: () => import("moti").UseAnimationState>; //# sourceMappingURL=index.d.ts.map