/** * @name useragent-info.directive * @description Useragent info directive in ngx-responsive * * @license MIT */ import { EventEmitter, OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core'; import { ResponsiveState } from '../../@core/providers/responsive-state/responsive-state'; import { UserAgentInfo } from './useragent-info'; import { PlatformService } from '../../@core/providers/platform-service/platform.service'; export declare class UserAgentInfoDirective extends UserAgentInfo implements OnInit, OnDestroy { _responsiveState: ResponsiveState; cd: ChangeDetectorRef; info: EventEmitter; constructor(_responsiveState: ResponsiveState, cd: ChangeDetectorRef, platformService: PlatformService); ngOnInit(): void; ngOnDestroy(): void; protected _emitUserAgent(value: any): void; }