import { ReactElement } from 'react'; export interface StepProps { /** * Title of the step */ title: string; /** * Number of the step */ number: number; /** * Set the steps current state, * either active, completed, or disabled */ state: 'active' | 'completed' | 'disabled'; } declare const Step: ({ title, state, number }: StepProps) => ReactElement; export default Step;