import { type ReactNode } from 'react'; declare type NavigateOptions = { replace?: boolean; }; declare type RouterProviderProps = { children: ReactNode; initialPath?: string; }; export declare function RouterProvider({ children, initialPath }: RouterProviderProps): import("@emotion/react/jsx-runtime").JSX.Element; export declare function useLocation(): { pathname: string; }; export declare function useNavigate(): (to: string, options?: NavigateOptions | undefined) => void; export {}; //# sourceMappingURL=router.d.ts.map