import { IToastConfig } from '../interfaces'; import { DomService } from '../../services/dom.service'; import { ToastComponent } from '../components/toast.component'; export declare class ToastService { private readonly domService; private count; constructor(domService: DomService); open(config: IToastConfig): ToastComponent; private getComponentRef; }