import React from 'react'; interface StepRouteProps { number: number; title: string; component: JSX.Element; } declare const StepRoute: React.FC; export default StepRoute;