import type { RouterContextValue } from '../types'; /** * Returns the current router context, including state, path, and navigation functions. * Must be used within a NavigationProvider. * * @returns The router context value. * @throws If used outside a NavigationProvider. * * @example * ```ts * const { path, navigate, goBack } = useRouter(); * ``` */ export declare function useRouter(): RouterContextValue; //# sourceMappingURL=useRouter.d.ts.map