import { useLocation, useNavigate, useParams } from "react-router-dom"; export interface WithRouterProps { router: { location: ReturnType; navigate: ReturnType; params: ReturnType; }; } export declare function withRouter(Component: any): (props: any) => any;