import { ReactElement } from 'react'; export type StepStatus = 'disabled' | 'enabled' | 'error' | 'progress' | 'skeleton' | 'validated'; export type StepPrimitiveProps = { title: string; tooltip?: string; children?: string | ReactElement; status: StepStatus; orientation?: 'vertical' | 'horizontal'; }; /** * Steps are the main elements for the stepper. */ declare const Step: import("react").ForwardRefExoticComponent>; export default Step;