import { AfterContentInit, ElementRef, OnInit, Renderer2 } from '@angular/core'; import { Destroyable } from '../../common/destroyable'; import { InputToken } from '../input'; export declare class FieldComponent extends Destroyable implements OnInit, AfterContentInit { private _renderer; inputDiv: ElementRef; input: InputToken; inputError: boolean; constructor(_renderer: Renderer2); ngOnInit(): void; ngAfterContentInit(): void; focusInput: () => void; }