import { MatFormFieldControl } from '@angular/material'; import { OnInit, OnDestroy, ElementRef } from '@angular/core'; import { ControlValueAccessor, NgControl } from '@angular/forms'; import { FocusMonitor } from '@angular/cdk/a11y'; import { OgCustomInput } from '../OgCustomInput'; export declare class OgBooleanInputComponent extends OgCustomInput implements MatFormFieldControl, ControlValueAccessor, OnInit, OnDestroy { ngControl: NgControl; protected fm: FocusMonitor; protected elRef: ElementRef; static nextId: number; controlType: string; id: string; autofilled?: boolean; timeMask: any; opcaoSim: any; opcaoNao: any; constructor(ngControl: NgControl, fm: FocusMonitor, elRef: ElementRef); matSelectChanged(e: any): void; onContainerClick(event: MouseEvent): void; trueLabel(): any; falseLabel(): any; }