import { ElementRef, OnInit, OnDestroy } from '@angular/core'; import { ActionSheetService } from './action-sheet.service'; export declare class ActionSheetComponent implements OnInit, OnDestroy { private actionSheetService; private elementRef; set show(value: boolean); get show(): boolean; isPopUp: boolean; private _show; private timer; constructor(actionSheetService: ActionSheetService, elementRef: ElementRef); ngOnInit(): void; ngOnDestroy(): void; }