import React from 'react'; export interface RouteConfig { path: string; label: string; icon: React.ComponentType; component?: React.ComponentType; } export declare const routes: RouteConfig[]; export declare const getRouteByPath: (path: string) => RouteConfig | undefined; export declare const isValidRoute: (path: string) => boolean;