import type { INavigation } from './Declarations'; /** * Navigates to a new route using the global `` element. * * @param navigation - The navigation target (path, href, or query). * @throws {RouterNotFoundError} If no `` element is found. * * @public */ export declare function navigate(navigation: Partial): void; /** * Moves forward in the browser's session history. * * @public */ export declare function forward(): void; /** * Moves backward in the browser's session history. * * @public */ export declare function back(): void; //# sourceMappingURL=Utils.d.ts.map