import { Alert, AlertDestination } from '../domain/alert';
export interface AlertSender {
    send(alert: Alert): Promise<void>;
}
export declare class AlertSenderFactory {
    static createSender(destination: AlertDestination, config?: any): AlertSender;
}
//# sourceMappingURL=alertSender.d.ts.map