/********************************************************************* * Copyright (c) Intel Corporation 2019 * SPDX-License-Identifier: Apache-2.0 **********************************************************************/ /** * EncodingOptions Component * * Dropdown selector for KVM encoding options: * - RLE8: 8-bit Run Length Encoding (lower bandwidth, less color depth) * - RLE16: 16-bit Run Length Encoding (higher bandwidth, better colors) * * The dropdown is disabled when connected (state=2) to prevent * encoding changes during an active session. */ import React from 'react'; export interface IEncodingOptions { changeEncoding: (encoding: number) => void; getConnectState: () => number; className?: string; style?: React.CSSProperties; selectClassName?: string; selectStyle?: React.CSSProperties; } export declare const EncodingOptions: React.FC; //# sourceMappingURL=EncodingOptions.d.ts.map