import { TextFieldBase } from './textfield.common'; export declare class TextField extends TextFieldBase { [key: symbol]: (...args: any[]) => any | void; editText: com.nativescript.material.textfield.TextInputEditText; layoutView: com.google.android.material.textfield.TextInputLayout; constructor(); get nativeTextViewProtected(): com.nativescript.material.textfield.TextInputEditText; get nativeViewProtected(): com.google.android.material.textfield.TextInputLayout; set nativeViewProtected(view: com.google.android.material.textfield.TextInputLayout); createNativeView(): com.google.android.material.textfield.TextInputLayout; requestFocus(): boolean; clearFocus(): void; setSelection(start: number, stop?: number): void; }