import * as react from 'react'; import { ReactNode } from 'react'; interface GlowCardProps { children: ReactNode; className?: string; /** Color of the glow. Default: accent yellow */ glowColor?: string; /** Glow intensity (0–1). Default: 0.15 */ intensity?: number; } declare function GlowCard({ children, className, glowColor, intensity, }: GlowCardProps): react.JSX.Element; export { GlowCard, type GlowCardProps };