/**
 * Glowing Card Component
 * A glassmorphic card with animated glowing edges and hover effects
 */
import React, { CSSProperties, ReactNode } from "react";
/**
 * Glowing Card Props
 */
export interface GlowingCardProps {
    children?: ReactNode;
    className?: string;
    style?: CSSProperties;
    "data-testid"?: string;
    glowColor?: string;
    glowIntensity?: number;
    animationDuration?: number;
    variant?: "default" | "neon" | "subtle" | "rainbow";
    onClick?: () => void;
    interactive?: boolean;
    disabled?: boolean;
    "aria-label"?: string;
}
/**
 * Glowing Card Component
 */
export declare const GlowingCard: React.ForwardRefExoticComponent<GlowingCardProps & React.RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=GlowingCard.d.ts.map