/// import { Title } from '../../@Types/FormStep'; import { StepProps } from '../Step'; export interface TitleStepProps extends StepProps { /** The TitleStep to display */ step: Title; } declare function TitleStep(props: TitleStepProps): JSX.Element; export default TitleStep;