/** * Hash Router Strategy * Uses URL hash for routing */ import type { IRouterStrategy } from '../../spi/index.js'; export declare class HashRouterStrategy implements IRouterStrategy { private listeners; constructor(); push(path: string): void; replace(path: string): void; back(): void; forward(): void; getCurrentPath(): string; listen(callback: (path: string) => void): () => void; destroy(): void; private setupListener; private handleHashChange; private notifyListeners; } //# sourceMappingURL=HashRouterStrategy.d.ts.map