import React from 'react'; import type { ThemeType } from '../types'; interface TextWithIconProps { lang: ioBroker.Languages; themeType?: ThemeType; value: string | Record; list?: ioBroker.Object[] | Record; className?: string; style?: React.CSSProperties; title?: string; removePrefix?: string; moreClasses?: { root?: string; icon?: string; text?: string; }; icon?: string; color?: string; } export declare function TextWithIcon(props: TextWithIconProps): React.JSX.Element; export {};