import { MatFormFieldControl } from '@angular/material'; import { OnInit, OnDestroy, ElementRef } from '@angular/core'; import { ControlValueAccessor, NgControl, FormControl } from '@angular/forms'; import { FocusMonitor } from '@angular/cdk/a11y'; import { OgCustomInput } from '../OgCustomInput'; export declare function validarHorario(c: FormControl): { horario: { valid: boolean; }; }; export declare class OgHorarioInputComponent 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; constructor(ngControl: NgControl, fm: FocusMonitor, elRef: ElementRef); keyUp(event: KeyboardEvent): void; }