import { AfterViewInit, OnDestroy } from '@angular/core'; import { FormArray, FormGroup } from '@angular/forms'; import { Subscription } from 'rxjs/Subscription'; export interface option { value: string; label: string; } export declare class MultiCheckboxComponent implements OnDestroy, AfterViewInit { _options: option[]; _value: string[]; _arr: FormArray; _form: FormGroup; _subscribers: Subscription[]; inline: boolean; options: any[]; readonly arr: any[]; ngAfterViewInit(): void; writeValue(val: any): void; onChange: Function; onTouched: Function; registerOnChange(fn: Function): void; registerOnTouched(fn: Function): void; ngOnDestroy(): void; }