import * as i0 from '@angular/core'; import { OnChanges, OnInit, TemplateRef } from '@angular/core'; import { Direction } from '@angular/cdk/bidi'; /** * 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 */ type NzResultIconType = 'success' | 'error' | 'info' | 'warning'; type NzExceptionStatusType = '404' | '500' | '403'; type NzResultStatusType = NzExceptionStatusType | NzResultIconType; declare class NzResultComponent implements OnChanges, OnInit { private cdr; private directionality; private destroyRef; nzIcon?: string | TemplateRef; nzTitle?: string | TemplateRef; nzStatus: NzResultStatusType; nzSubTitle?: string | TemplateRef; nzExtra?: string | TemplateRef; icon?: string | TemplateRef; isException: boolean; dir: Direction; ngOnInit(): void; ngOnChanges(): void; private setStatusIcon; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } declare class NzResultTitleDirective { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } declare class NzResultSubtitleDirective { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } declare class NzResultIconDirective { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } declare class NzResultContentDirective { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } declare class NzResultExtraDirective { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } declare class NzResultNotFoundComponent { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } declare class NzResultServerErrorComponent { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } declare class NzResultUnauthorizedComponent { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } declare class NzResultModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } export { NzResultComponent, NzResultContentDirective, NzResultExtraDirective, NzResultIconDirective, NzResultModule, NzResultSubtitleDirective, NzResultTitleDirective, NzResultNotFoundComponent as ɵNzResultNotFoundComponent, NzResultServerErrorComponent as ɵNzResultServerErrorComponent, NzResultUnauthorizedComponent as ɵNzResultUnauthorizedComponent }; export type { NzExceptionStatusType, NzResultIconType, NzResultStatusType };