import { AfterViewInit, EventEmitter, Injector, OnDestroy, OnInit } from '@angular/core';
import { NgxFilterBase } from "../../ngx-filter-base";
import { Filter } from "../../../ngx-types";
export declare class NgxTrueFalseFilterComponent extends NgxFilterBase implements OnInit, OnDestroy, AfterViewInit {
    constructor(injector: Injector);
    ngOnInit(): void;
    Label1: string;
    Label2: string;
    filter: Filter;
    changeValue: EventEmitter<any>;
    ngAfterViewInit(): void;
}
