/** * 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 { FocusTrapFactory } from '@angular/cdk/a11y'; import { OverlayRef } from '@angular/cdk/overlay'; import { CdkPortalOutlet } from '@angular/cdk/portal'; import { ChangeDetectorRef, ElementRef, EventEmitter, Renderer2 } from '@angular/core'; import { VtsConfigService } from '@ui-vts-kit/ng-vts/core/config'; import { VtsSafeAny } from '@ui-vts-kit/ng-vts/core/types'; import { VtsI18nService, VtsModalI18nInterface } from '@ui-vts-kit/ng-vts/i18n'; import { BaseModalContainerComponent } from './modal-container'; import { ModalOptions } from './modal-types'; import * as i0 from "@angular/core"; export declare class VtsModalConfirmContainerComponent extends BaseModalContainerComponent { private i18n; config: ModalOptions; portalOutlet: CdkPortalOutlet; overridemodalElementRef: ElementRef; readonly cancelTriggered: EventEmitter; readonly okTriggered: EventEmitter; locale: VtsModalI18nInterface; constructor(i18n: VtsI18nService, elementRef: ElementRef, focusTrapFactory: FocusTrapFactory, cdr: ChangeDetectorRef, render: Renderer2, overlayRef: OverlayRef, vtsConfigService: VtsConfigService, config: ModalOptions, document: VtsSafeAny, animationType: string); onCancel(): void; onOk(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }