import { EventNotificationTo } from "./types"; export declare class EventNotification_Data { datetime: number; to: EventNotificationTo; message: string; subject: string; } export interface EventNotification_Input { to: EventNotificationTo; message: string; subject: string; }