/** * @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 { AfterContentInit, ElementRef, OnChanges, OnDestroy, OnInit, QueryList, Renderer2, SimpleChanges } from '@angular/core'; import { NzConfigService } from 'ng-zorro-antd/core/config'; import { Subject } from 'rxjs'; import { NzFormLabelComponent } from './form-label.component'; export declare class NzFormDirective implements OnInit, OnChanges, AfterContentInit, OnDestroy { nzConfigService: NzConfigService; private renderer; nzLayout: string; nzNoColon: boolean; hostClassMap: {}; nzFormLabelComponent: QueryList; destroy$: Subject; setClassMap(): void; updateItemsDefaultColon(): void; constructor(nzConfigService: NzConfigService, elementRef: ElementRef, renderer: Renderer2); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngAfterContentInit(): void; ngOnDestroy(): void; }