import type { ComponentPropsWithoutRef, ReactNode } from 'react'; import { type CssLength } from '../../../utils/css'; export type ElectricBorderCardProps = Omit, 'children' | 'title'> & { title?: ReactNode; eyebrow?: ReactNode; description?: ReactNode; children?: ReactNode; color?: string; lightColor?: string; width?: CssLength; height?: CssLength; radius?: CssLength; animated?: boolean; respectReducedMotion?: boolean; }; export declare const ElectricBorderCard: ({ title, eyebrow, description, children, color, lightColor, width, height, radius, animated, respectReducedMotion, className, style, ...props }: ElectricBorderCardProps) => import("react/jsx-runtime").JSX.Element;