import type { Action, Store } from '../../store.js'; export declare const getLocation: () => NavigationState['location']; export interface NavigationState { location: { pathname: string; search: string; hash: string; }; } export interface NavigateOptions { redirect?: boolean; title?: string; } export declare const navigate: (url: string, options?: NavigateOptions | undefined) => Action; export declare const syncLocation: () => Action; export declare const navigation: (store: Store) => Store;