interface RouterConfiguration { linkComponent?: any; routeComponent?: any; switchComponent?: any; navigate?: (to: string) => void; } export declare const routerConfiguration: RouterConfiguration; interface Props { [x: string]: any; } export declare const navigate: (to: string) => any; export declare const NavLink: ({ children, ...props }: Props) => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element; export declare const Switch: ({ children, ...props }: Props) => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element; export declare const Route: ({ children, ...props }: Props) => import("@emotion/react/types/jsx-namespace").EmotionJSX.Element; export {};