import { FormService } from '../form.service'; import { OnInit, ElementRef } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { InputBase } from '../input-base/input-base.component'; export declare class ToggleComponent extends InputBase implements OnInit { class: string; fg: FormGroup; placeholder: string; field: string; label: string; value: string; disabled: boolean; color: string; identifier: string; constructor(el: ElementRef, formService: FormService); addValidators(): void; ngOnInit(): void; ngOnDestroy(): void; }