import React from "react"; export type AnimationVariant = "fadeIn" | "fadeInUp" | "slideDown" | "scaleIn"; export interface AnimatedCardProps { children: React.ReactNode; variant?: AnimationVariant; delay?: number; duration?: number; disabled?: boolean; threshold?: number; } declare const AnimatedCard: React.FC; export default AnimatedCard;