import React from 'react'; import { IListProps } from '../ListExt'; import { DeviceItemType } from '../../core'; import './index.less'; interface DeviceListProps extends Exclude, 'list' | 'itemKey' | 'itemNameKey' | 'whatIcon' | 'inputPlaceholder' | 'rowHeight'> { deviceList?: Array; deleteItem?: (item: DeviceItemType) => void; getIconStyle?: (item: DeviceItemType) => React.CSSProperties; } declare function DeviceList({ getIconStyle, className, deleteItem, deviceList, renderItemExt, ...props }: DeviceListProps): JSX.Element; export default DeviceList;