/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import { EventEmitter } from '@angular/core'; /** * Chat message component. * * @styles * */ export declare class NbChatMessageOptionsListComponent { /** * Message sender * @type {string} */ sender: string; /** * List options * @type {any[]} */ options: any[]; /** * Message send date * @type {Date} */ date: Date; /** * Message sent */ message: string; /** * Option clicked event */ optionClicked: EventEmitter; /** * To be called when the user clicks an option */ chooseOption(value: string): void; }