import { default as React } from 'react'; /** * @deprecated Use `HorizontalStepper` from `@tedi-design-system/react/tedi` instead. */ export interface StepProps { /** * ID of step */ id: string; /** * Step content. */ children: React.ReactNode; /** * Label of step. */ label: string; /** * Additional class. */ className?: string; /** * The position of the step. * The prop defaults to the value inherited from the parent Stepper component. */ index?: number; /** * Mark the step as completed */ completed?: boolean; /** * Show completed icon next to the step label * When true, a checkmark icon is displayed next to the step label even when the step is not marked as completed. * @default false */ showCompletedIcon?: boolean; } /** * @deprecated Use `HorizontalStepper` from `@tedi-design-system/react/tedi` instead. */ export declare const Step: (props: StepProps) => JSX.Element | null; export default Step;