/**
 * Copyright (c) 2021 BlockDev AG
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */
export declare enum NodeMonitoringStatus {
    SUCCESS = "success",
    FAILED = "failed",
    UNKNOWN = "unknown",
    PENDING = "pending"
}
export interface NodeMonitoringStatusResponse {
    status: NodeMonitoringStatus;
}
export declare function parseNodeMonitoringStatus(data: any): NodeMonitoringStatusResponse;
