import { default as React } from 'react'; interface StepCardComponentProps { icon: React.ReactNode; title: React.ReactNode; subtitle?: React.ReactNode; isHighlighted?: boolean; } export declare const StepCardComponent: ({ icon, title, subtitle, isHighlighted, }: StepCardComponentProps) => import("react/jsx-runtime").JSX.Element; export {};