/// import { Component } from "react"; export interface RouteProps { name?: string; path?: string; middleware?: Function; component?: any; } export declare class Route extends Component { }