import { default as React } from 'react'; import { SxProps, Theme } from '@mui/material/styles'; interface ConnectionCardProps { centerIconBgColor?: string; dotBgColor?: string; hasBigDots?: boolean; hasConfetti?: boolean; icon: React.ReactNode; leftIcon: React.ReactNode; rightIcon: React.ReactNode; sx?: SxProps; } declare const ConnectionCard: ({ centerIconBgColor, dotBgColor, hasBigDots, hasConfetti, icon, leftIcon, rightIcon, sx, }: ConnectionCardProps) => import("react/jsx-runtime").JSX.Element; export default ConnectionCard;