import { OnInit, ElementRef, Renderer } from '@angular/core'; import { Message } from "../service/message"; import { Store } from "../service/store"; import { Location } from "../service/location"; export declare class SafeShowHandleComponent implements OnInit { message: Message; store: Store; element: ElementRef; renderer: Renderer; location: Location; hide: any; cssObj: {}; closeCss: string; openCss: string; eye: any; constructor(message: Message, store: Store, element: ElementRef, renderer: Renderer, location: Location); ngOnInit(): void; changeCss: (hide: any) => void; onClick: (event: any) => void; getName: () => string; safeShowSwitch: () => void; getSafeShowStatus: () => Promise<{}>; } export declare class SafeShowComponent implements OnInit { message: Message; store: Store; location: Location; hide: boolean; close: boolean; constructor(message: Message, store: Store, location: Location); getName: () => string; ngOnInit(): boolean; }