export interface RouteItem {
    path: string;
    component: any;
    exact?: boolean;
    routes?: RouteItem[];
}
export declare const routes: RouteItem[];
