import React from 'react'; export interface RouteConfig { /** Relative or absolute navigation path */ path: string; /** Display label (used in sidebar and breadcrumbs) */ label: string; /** Leading icon component */ icon: React.ComponentType; /** Optional page component (not used by the sidebar directly) */ component?: React.ComponentType; } export declare const routes: RouteConfig[]; export declare const getRouteByPath: (path: string) => RouteConfig | undefined; export declare const isValidRoute: (path: string) => boolean;