declare abstract class BaseMessage {
    protected method: string;
    request: any;
    response: any;
    targetNodeId: string;
    buildRequest(params: any): void;
    buildNotification(params: any): void;
}
export default BaseMessage;
