import { NotificationEvent } from '~server/data/interfaces'; declare class Notifier { private event; constructor(event: NotificationEvent); notify(): Promise; private handleNotifier; private notifyAPI; private notifyEmail; } export default Notifier;