import React from 'react'; interface routeType { path: string; component: React.ComponentType; auth?: boolean; exact?: boolean; routes?: Array | undefined; } export default routeType;