import type { Router, State } from "@real-router/core"; export interface RouteAnnouncerOptions { prefix?: string; getAnnouncementText?: (route: State) => string; } export declare function createRouteAnnouncer(router: Router, options?: RouteAnnouncerOptions): { destroy: () => void; };