import { ElementRef } from '@angular/core'; import { View } from '@nativescript/core'; import { BaseValueAccessor } from '@nativescript/angular'; import * as i0 from "@angular/core"; export type TextView = { text: string; } & View; /** * The accessor for writing a text and listening to changes that is used by the * {@link NgModel} directives. * * ### Example * ``` * * ``` */ export declare class TextValueAccessor extends BaseValueAccessor { constructor(elementRef: ElementRef); writeValue(value: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }