import { EventEmitter, OnInit } from '@angular/core'; export declare class UserInputComponent implements OnInit { /** * Event emitter for send button click * @memberof UserInputComponent */ onInput: EventEmitter; /** * Input property to set CSS styling of the component * @memberof UserInputComponent */ options: any; /** * User entered input text * @memberof UserInputComponent */ inputText: any; constructor(); ngOnInit(): void; /** * Triggered when send button is clicked * Triggers OnInput event with input text as data if input text is not null * Clears the input text on event emit * @memberof UserInputComponent */ send(): void; }