import { ChevronProps } from '../Chevron/Chevron.interface'; import { ImageInterface } from '../IconBillboard'; import { QuaternaryTypes } from '../utils/variant.types'; import { FC, ReactNode } from 'react'; import { StepItemProps } from '../StepItem'; export interface StepItemSetProps { id: string; variant?: QuaternaryTypes; logo?: boolean; title?: string | ReactNode; description?: string | ReactNode; image?: ImageInterface; numbered?: boolean; stepItems?: StepItemProps[]; callToActionRow?: boolean | ChevronProps[]; additionalDetails?: string | ReactNode; video?: { videoId: string; videoPlayer: string; thubnailImage: string; transcript?: string; }; } export declare const StepItemSet: FC;