export type NavigationPhase = 'start' | 'complete'; export interface NavigationEvent { phase: NavigationPhase; from: string; to: string; state?: unknown; } export declare function useNavigationEvents(handler: (e: NavigationEvent) => void): void; //# sourceMappingURL=navigation-events.d.ts.map