///
import { BoxProps } from '@mui/material/Box';
import { DEVICE_ICON } from './constants';
import { TableMode } from '../../types/index.js';
interface DeviceIconProps extends BoxProps {
type?: keyof typeof DEVICE_ICON;
isTextShown?: boolean;
tableMode?: TableMode;
}
declare function DeviceIcon({ type, isTextShown, tableMode, ...props }: DeviceIconProps): import("react").JSX.Element;
declare const _default: import("react").MemoExoticComponent;
export default _default;