import NotificationResult from "../models/NotificationResult"; import CustomHTMLBaseElement from "../../../shared-files/CustomHTMLBaseElement"; import NotificationResultCustomElement from './NotificationResultCustomElement'; export default class NotificationEventTableCustomElement extends CustomHTMLBaseElement { private notificationTable; private nativeInput; notificationResultCustom: NotificationResultCustomElement; constructor(); get value(): string; set value(val: string); componentDidMount(): void; GetAllNotificationResults(): void; private addnotificationresultsHeaderRow; private addnotificationResultRow; private runAction; updateNotificationResultRowStatus(notificationResult: NotificationResult): void; updateNotificationResultRowsStatus(notificationResults: NotificationResult[]): void; }