/** * History Router Strategy * Uses browser History API for routing */ import type { IRouterStrategy } from '../../spi/index.js'; export declare class HistoryRouterStrategy implements IRouterStrategy { private base; private listeners; constructor(base?: string); 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 handlePopState; private notifyListeners; } //# sourceMappingURL=HistoryRouterStrategy.d.ts.map