import { OnInit, EventEmitter } from '@angular/core';
export declare class CheckboxComponent implements OnInit {
    name: string;
    value: any;
    label: string;
    disabled: boolean;
    binary: boolean;
    tabindex: number;
    inputId: string;
    style: object;
    styleClass: string;
    labelStyleClass: string;
    checked: boolean;
    checkedChange: EventEmitter<boolean>;
    constructor();
    ngOnInit(): void;
    onChange($event: boolean): void;
}
