export interface HistoryNavigationEvent { type: 'push' | 'replace' | 'pop'; fromUrl: string; toUrl: string; } type NavListener = (event: HistoryNavigationEvent) => void; export declare function onHistoryNavigation(listener: NavListener): () => void; export {}; //# sourceMappingURL=history-patch.d.ts.map