import { ElementType } from 'react'; declare enum Routes { Subscribe = "Subscribe", Settings = "Settings", ChannelAdded = "ChannelAdded", SetupApps = "SetupApps", SelectCategories = "SelectCategories", SelectApps = "SelectApps", NotificationsFeed = "NotificationsFeed", SubscriptionFlowEnded = "SubscriptionFlowEnded", VerifyAccount = "VerifyAccount" } type Route = { Component: ElementType; requiresAuth: boolean; name: Routes; }; declare const RouteConfig: Record; export { RouteConfig, Routes, Route };