import { default as React } from 'react'; export type DescriptionProps = { readonly className?: string; /** * Heading text or element displayed next to the icon. */ readonly heading?: React.ReactNode; /** * Custom icon element rendered inside the icon circle (e.g. ). * Takes precedence over imageSrc and number if provided. */ readonly icon?: React.ReactNode; /** * Image source for the icon circle. */ readonly imageSrc?: string; /** * Number to display inside the icon circle. */ readonly number?: number; /** * Description body content displayed below the heading. */ readonly children?: React.ReactNode; }; /** * Renders the visible row for a step: the icon circle and the heading/description text. */ export declare function Description({ className, heading, icon, imageSrc, number, children }: DescriptionProps): import("react/jsx-runtime").JSX.Element; export declare namespace Description { var displayName: string; }