import type { IRouteState } from "./IRouteState.js";
export declare enum NavigationType {
    Navigate = "navigate",
    Replace = "replace",
    Back = "back",
    Forward = "forward"
}
export type NavigationListener = (type: NavigationType, from: IRouteState | null, to: IRouteState | null) => void;
//# sourceMappingURL=NavigationListener.d.ts.map