/** * @license * Copyright Alibaba.com All Rights Reserved. * * 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 { OnChanges, TemplateRef } from '@angular/core'; export declare type NzResultIconType = 'success' | 'error' | 'info' | 'warning'; export declare type NzExceptionStatusType = '404' | '500' | '403'; export declare type NzResultStatusType = NzExceptionStatusType | NzResultIconType; export declare class NzResultComponent implements OnChanges { nzIcon?: string | TemplateRef; nzTitle: string | TemplateRef; nzStatus: NzResultStatusType; nzSubTitle?: string | TemplateRef; nzExtra?: string | TemplateRef; icon?: string | TemplateRef; isException: boolean; constructor(); ngOnChanges(): void; private setStatusIcon; }