/** * 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 { EventEmitter } from '@angular/core'; import { VtsButtonType } from '@ui-vts-kit/ng-vts/button'; import { BooleanInput } from '@ui-vts-kit/ng-vts/core/types'; import { VtsResultActionDirective, VtsResultIconDirective } from './result-cells'; import * as i0 from "@angular/core"; export type VtsSuccessTemplateType = ''; export type VtsExceptionTemplateType = '404' | '403' | '500' | 'bad-connection'; export type VtsResultTemplateType = VtsExceptionTemplateType | VtsSuccessTemplateType; export declare class VtsResultComponent { static ngAcceptInputType_vtsOkLoading: BooleanInput; static ngAcceptInputType_vtsOkDisabled: BooleanInput; static ngAcceptInputType_vtsCancelDisabled: BooleanInput; static ngAcceptInputType_vtsCancelLoading: BooleanInput; vtsTemplate: VtsResultTemplateType; vtsLayout: 'icon-first' | 'content-first'; vtsOkLoading: boolean; vtsOkDisabled: boolean; vtsOkText?: string | null; vtsOkType: VtsButtonType; readonly vtsOnOk: EventEmitter; vtsCancelDisabled: boolean; vtsCancelLoading: boolean; vtsCancelText?: string | null; vtsCancelType: VtsButtonType; readonly vtsOnCancel: EventEmitter; iconTemplate?: VtsResultIconDirective; actionTemplate?: VtsResultActionDirective; private destroy$; constructor(); ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }