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