/********************************************************************* * Copyright (c) Intel Corporation 2023 * SPDX-License-Identifier: Apache-2.0 **********************************************************************/ /** * AttachDiskImage Component * * A complete UI component for IDE Redirection (IDER) that allows users to: * - Select an ISO file from their local machine * - Mount it as a virtual CD-ROM on a remote AMT device * - Start/stop the IDER session * */ import React from 'react'; export interface AttachDiskImageProps { deviceId: string | null; mpsServer: string | null; authToken?: string; fileSelectLabel?: string; noFileSelectedLabel?: string; containerClassName?: string; containerStyle?: React.CSSProperties; buttonClassName?: string; buttonStyle?: React.CSSProperties; fileSelectClassName?: string; fileSelectStyle?: React.CSSProperties; fileNameClassName?: string; fileNameStyle?: React.CSSProperties; } export declare const AttachDiskImage: React.FC; //# sourceMappingURL=AttachDiskImage.d.ts.map