//#region src/router/useNavigate/useNavigate.d.ts /** * Returns the router navigation function. * * @returns A function that navigates to a path and resolves when the router is done. * * @example * ```tsx * const navigate = useNavigate(); * * await navigate('/dashboard', { from: 'login' }); * ``` */ declare const useNavigate: () => (path: string, state?: any) => Promise; //#endregion export { useNavigate }; //# sourceMappingURL=useNavigate.d.cts.map