import type { ReactNode } from 'react'; type StepProps = { /** * The number of the step, max 5 steps. */ stepNumber: number; /** * An icon to replace the step number in the bullet */ stepIcon?: ReactNode; /** * Title of the step */ stepTitle: string; /** * State of the step */ completed: boolean; 'data-testid'?: string; }; export declare const SteppedList: ({ stepNumber, stepTitle, completed, stepIcon, 'data-testid': dataTestId }: StepProps) => import("react").JSX.Element; export {}; //# sourceMappingURL=Step.d.ts.map