import { NotificationDriverApplyInterface } from "./NotificationDriverApplyInterface"; export interface NotificationDriverInterface { apply(config?: any): NotificationDriverApplyInterface; validateConfig(schema: { [key: string]: string; }): boolean; name(): string; }