import { AfterContentInit, ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, TemplateRef } from '@angular/core'; import { NzNoAnimationDirective } from 'ant-reset-private/core'; import { NzDropDownComponent } from './nz-dropdown.component'; import { NzDropDownDirective } from './nz-dropdown.directive'; import { NzMenuDropdownService } from './nz-menu-dropdown.service'; export declare class NzDropDownButtonComponent extends NzDropDownComponent implements OnDestroy, AfterContentInit, OnChanges { noAnimation?: NzNoAnimationDirective | undefined; nzSize: string; nzType: string; nzIcon: string | TemplateRef; readonly nzClick: EventEmitter; nzDropDownDirective: NzDropDownDirective; constructor(cdr: ChangeDetectorRef, nzMenuDropdownService: NzMenuDropdownService, noAnimation?: NzNoAnimationDirective | undefined); /** rewrite afterViewInit hook */ ngAfterContentInit(): void; }