import type { HistoryActions, NavigateFn } from "./types";
/**
 * Create the navigate helper function needed in a `NavigatorHistory`.
 */
export default function createNavigate<State = unknown>({ go, push, replace: replaceState, }: HistoryActions<State>): NavigateFn<State>;
