declare const useNavigate: () => {
    back: () => void;
    forward: () => void;
    breadCrumbs: string[];
    pathname: string | undefined;
    push: (path: string, options?: import("../types").PushOptions | undefined) => void;
    reload: () => void;
    state: import("../types").RouterState | null;
};
export default useNavigate;
