/** A structure describing the nodes of the cluster */
export interface Node {
    /** ID of the node */
    id: string;
    /** ID of the server */
    serverId: number;
    /** Name of the server */
    serverName: string;
}
//# sourceMappingURL=Node.d.ts.map