/** * 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 { Direction, Directionality } from '@angular/cdk/bidi'; import { ChangeDetectorRef, OnChanges, OnDestroy, OnInit, TemplateRef } from '@angular/core'; import * as i0 from "@angular/core"; export type NzResultIconType = 'success' | 'error' | 'info' | 'warning'; export type NzExceptionStatusType = '404' | '500' | '403'; export type NzResultStatusType = NzExceptionStatusType | NzResultIconType; export declare class NzResultComponent implements OnChanges, OnDestroy, OnInit { private cdr; private directionality; nzIcon?: string | TemplateRef; nzTitle?: string | TemplateRef; nzStatus: NzResultStatusType; nzSubTitle?: string | TemplateRef; nzExtra?: string | TemplateRef; icon?: string | TemplateRef; isException: boolean; dir: Direction; private destroy$; constructor(cdr: ChangeDetectorRef, directionality: Directionality); ngOnInit(): void; ngOnChanges(): void; ngOnDestroy(): void; private setStatusIcon; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }