import { FC } from 'react'; 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: FC; export declare const Switch: FC; export declare const Route: FC; export {};