import * as React from 'react'; import { StandardProps } from '..'; import { Orientation } from '../Stepper'; export interface StepProps extends StandardProps, StepClasskey> { active?: boolean; alternativeLabel?: boolean; children?: React.ReactNode; completed?: boolean; connector?: React.ReactElement; disabled?: boolean; index?: number; last?: boolean; orientation?: Orientation; } export type StepClasskey = 'root' | 'horizontal' | 'vertical' | 'alternativeLabel' | 'completed'; declare const Step: React.ComponentType; export default Step;