import * as React from 'react'; import { DeviceBaseWithComputedProps, ItemBaseProps } from './Item'; interface DeviceProps extends ItemBaseProps { device: DeviceBaseWithComputedProps; wifiStrength?: number; isEthernet?: boolean; } declare class Device extends React.Component { render(): JSX.Element; } export default Device;