import { ElementRef, EventEmitter, OnInit } from '@angular/core'; import { AbstractControl, FormGroup } from '@angular/forms'; export declare class MemoComponent implements OnInit { name: string; length: string; caption: string; enabled: Boolean; required: Boolean; min: Boolean; control: AbstractControl; value: string; glyph: string; valueChange: EventEmitter; form: FormGroup; error: any; displayCharacterCounter: boolean; memo: ElementRef; elementRef: ElementRef; init: boolean; constructor(elementRef: ElementRef); ngOnInit(): void; ngAfterViewInit(): void; returnError(): void; }