/// import { QuestionItem } from '../faq/Question'; export interface StepCardProps { className?: string; icon?: JSX.Element; step?: Step; apiServerUrl?: string; imageStorageBaseUrl?: string; } export interface Step { tagName?: string | null; title: string; description?: string | JSX.Element; faqs?: QuestionItem[]; imageSrc?: string | null; videoSrc?: string | null; imageAlt?: string; isActive?: boolean; stepNumber: number | string; btnText?: string | null; onBtnClick?: () => void; } declare function StepCard({ className, icon, step, imageStorageBaseUrl, apiServerUrl, }: StepCardProps): JSX.Element; export { StepCard };