export interface IMessageProvider {
    postMessage(from: string, to: string, message: string): any;
    watch(callback: (err: any, message: any) => void): any;
}
