import { Protocol } from "./Protocol";
export interface ITransportMessage {
    protocol: Protocol;
    data: any;
}
