import { EventBus, IEvent, LoggerService } from "@nova-ui/bits"; import { IInteractionHandlerProperties, IInteractionPayload, InteractionHandler } from "./interaction-handler"; import { UrlInteractionService } from "../../../services/url-interaction.service"; import * as i0 from "@angular/core"; export interface IUrlInteractionHandlerProperties extends IInteractionHandlerProperties { url: string; newWindow?: boolean; } export declare class WindowObject extends Window { } export declare class UrlInteractionHandler extends InteractionHandler { private window; private logger; private urlInteractionService; constructor(eventBus: EventBus, window: WindowObject, logger: LoggerService, urlInteractionService: UrlInteractionService); protected handleInteraction(interaction: IInteractionPayload): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }