import { ReactNode } from 'react'; interface RouteProps { path?: string; element?: ReactNode; } export declare const BrowserRouter: ({ children }: { children: ReactNode; }) => import("react").JSX.Element; export declare const Routes: ({ children }: { children: ReactNode; }) => import("react").JSX.Element; export declare const Route: ({ element }: RouteProps) => import("react").JSX.Element; export declare const Link: ({ children, to, className, ...rest }: { children: ReactNode; to: string; className?: string; [key: string]: unknown; }) => import("react").JSX.Element; export declare const useNavigate: () => jest.Mock; export declare const useLocation: () => { pathname: string; search: string; hash: string; state: null; }; export declare const useParams: () => {}; export {};