/** * WebComponent that listens on the `NavigateRouteEvent` event to be able to switch route. * * Use the "name" attribute to make this non-default target. * Use the "dialog" attribute to render routes inside a native `` element * with built-in focus trapping, backdrop, and Escape-to-close. * * @example * * */ export declare class RouteTarget extends HTMLElement { name?: string; private dialog?; connectedCallback(): void; disconnectedCallback(): void; private onNavigate; private loadComponent; /** Closes the dialog (only applies to dialog targets). */ close(): void; private applyRouteData; }