/**
 * @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 { ChangeDetectorRef, EventEmitter } from '@angular/core';
import { NzDropdownMenuComponent } from 'ng-zorro-antd/dropdown';
export declare class NzFilterTriggerComponent {
    private cdr;
    nzActive: boolean;
    nzDropdownMenu: NzDropdownMenuComponent;
    nzVisible: boolean;
    readonly nzVisibleChange: EventEmitter<boolean>;
    onVisibleChange(visible: boolean): void;
    onFilterClick($event: MouseEvent): void;
    hide(): void;
    show(): void;
    constructor(cdr: ChangeDetectorRef);
}
