/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { Overlay } from '@angular/cdk/overlay'; import { Injector, TemplateRef } from '@angular/core'; import { VtsSingletonService } from '@ui-vts-kit/ng-vts/core/services'; import { VtsMNService } from './base'; import { VtsMessageContainerComponent } from './message-container.component'; import { VtsMessageDataOptions, VtsMessageRef } from './typings'; import * as i0 from "@angular/core"; export declare class VtsMessageService extends VtsMNService { protected container?: VtsMessageContainerComponent; protected componentPrefix: string; constructor(vtsSingletonService: VtsSingletonService, overlay: Overlay, injector: Injector); success(content: string | TemplateRef, options?: VtsMessageDataOptions): VtsMessageRef; error(content: string | TemplateRef, options?: VtsMessageDataOptions): VtsMessageRef; info(content: string | TemplateRef, options?: VtsMessageDataOptions): VtsMessageRef; warning(content: string | TemplateRef, options?: VtsMessageDataOptions): VtsMessageRef; loading(content: string | TemplateRef, options?: VtsMessageDataOptions): VtsMessageRef; create(type: 'success' | 'info' | 'warning' | 'error' | 'loading' | string, content: string | TemplateRef, options?: VtsMessageDataOptions): VtsMessageRef; private createInstance; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }