import { ReactNode } from 'react'; interface RouterProps { children: ReactNode; } /** * Router that chooses the appropriate router based on the environment: * - BrowserRouter for standalone web apps (clean URLs) * - HashRouter for Electron apps (file:// protocol) */ export declare function Router({ children }: RouterProps): import("react/jsx-runtime").JSX.Element; export {};