import { AfterViewInit, ElementRef } from '@angular/core'; import { GasIcon } from '../../../utils/gas-icons/icon/gas-icon.namespace'; import { GasNotificationService } from '../gas-notify.service'; import { GasNotification } from '../gas-notify.namespace'; /** @see https://www.figma.com/file/yqBeq1MiGfpdN62SvmA8tg/RTLABS_GAS_DS_1?node-id=2995%3A33884 */ export declare class GasNotifyToastComponent implements AfterViewInit { private gasNotificationService; hostRef: ElementRef; notification: GasNotification.Notification; get type(): string; animation: boolean; get closeIconName(): string; get iconName(): GasIcon.Notifications; constructor(gasNotificationService: GasNotificationService); ngAfterViewInit(): void; close(): void; executeCallback(): void; private autoCloseToast; }