/** * Navigation helpers and global router access. * @module bquery/router */ /** * Navigates to a new path. * * @param path - The path to navigate to * @param options - Navigation options * * @example * ```ts * import { navigate } from 'bquery/router'; * * // Push to history * await navigate('/dashboard'); * * // Replace current entry * await navigate('/login', { replace: true }); * ``` */ export declare const navigate: (path: string, options?: { replace?: boolean; }) => Promise; /** * Programmatically go back in history. * * @example * ```ts * import { back } from 'bquery/router'; * back(); * ``` */ export declare const back: () => void; /** * Programmatically go forward in history. * * @example * ```ts * import { forward } from 'bquery/router'; * forward(); * ``` */ export declare const forward: () => void; //# sourceMappingURL=navigation.d.ts.map