import { ComponentFactoryResolver, ApplicationRef } from '@angular/core'; import { SkyContribToastOptions } from './toast.options'; import { SkyContribToast } from './toast.model'; export declare class SkyContribToastProvider { private resolver; private appRef; private container; private options; private index; constructor(resolver: ComponentFactoryResolver, appRef: ApplicationRef, options: SkyContribToastOptions); show(toast: SkyContribToast): void; dispose(): void; error(message: string, title?: string, autoDismiss?: boolean): void; info(message: string, title?: string, autoDismiss?: boolean): void; success(message: string, title?: string, autoDismiss?: boolean): void; warning(message: string, title?: string, autoDismiss?: boolean): void; }