import { NotificationActionTypeEnum } from '../enums';
import { INotificationAction } from '../interfaces/i-notification-action';
export declare class NotificationActionEntity implements INotificationAction {
    icon?: string;
    label: string;
    type: NotificationActionTypeEnum;
    value: string;
    constructor(data?: Partial<NotificationActionEntity>);
}
