import type { HistoryActions, NavigateFn } from "./types";
export default function createNavigate<State = unknown>({ go, push, replace: replaceState, }: HistoryActions<State>): NavigateFn<State>;
