/********************************************************************* * Copyright (c) Intel Corporation 2019 * SPDX-License-Identifier: Apache-2.0 **********************************************************************/ /** * SOL (Serial Over LAN) Component * * Provides remote terminal access to AMT-enabled devices via Serial Over LAN. * This allows users to interact with the device's serial console remotely, * useful for BIOS configuration, OS installation, and system recovery. * * Uses xterm.js for terminal emulation. */ import React from 'react'; export interface SOLProps { deviceId: string | null; mpsServer: string | null; autoConnect?: boolean; authToken: string; containerClassName?: string; containerStyle?: React.CSSProperties; buttonClassName?: string; buttonStyle?: React.CSSProperties; terminalContainerClassName?: string; terminalContainerStyle?: React.CSSProperties; xtermClassName?: string; xtermStyle?: React.CSSProperties; } export declare const Sol: React.FC; //# sourceMappingURL=Sol.d.ts.map