import React from 'react'; import { Types } from '@iobroker/type-detector'; import type { ThemeType } from '../../types'; export declare function DeviceTypeSelector(props: { themeType: ThemeType; supportedDevices?: Types[]; unsupportedDevices?: Types[]; value?: Types | ''; onChange: (value: Types) => void; label?: string; style?: React.CSSProperties; sx?: Record; disabled?: boolean; error?: boolean; /** Show icons for applications: google, amazon, material, alias. Used in devices */ showApplications?: { TYPE_OPTIONS: Partial>>; ICONS_TYPE: Record; }; }): React.JSX.Element;