/** * 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 { Portal } from '@angular/cdk/portal'; import { ChangeDetectorRef, Injector, OnChanges, OnDestroy, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core'; import { VtsSafeAny } from '@ui-vts-kit/ng-vts/core/types'; import { VtsConfigService } from '@ui-vts-kit/ng-vts/core/config'; import { VtsEmptyCustomContent, VtsEmptySize } from './config'; import * as i0 from "@angular/core"; type VtsEmptyContentType = 'component' | 'template' | 'string'; export declare class VtsEmbedEmptyComponent implements OnChanges, OnInit, OnDestroy { private configService; private viewContainerRef; private cdr; private injector; vtsComponentName?: string; specificContent?: VtsEmptyCustomContent; content?: VtsEmptyCustomContent; contentType: VtsEmptyContentType; contentPortal?: Portal; size: VtsEmptySize; private destroy$; constructor(configService: VtsConfigService, viewContainerRef: ViewContainerRef, cdr: ChangeDetectorRef, injector: Injector); ngOnChanges(changes: SimpleChanges): void; ngOnInit(): void; ngOnDestroy(): void; private renderEmpty; private subscribeDefaultEmptyContentChange; private getUserDefaultEmptyContent; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};