import React from 'react';
import type { ThemeType } from '../types';
interface TextWithIconProps {
    lang: ioBroker.Languages;
    themeType?: ThemeType;
    value: string | Record<string, any>;
    list?: ioBroker.Object[] | Record<string, ioBroker.Object>;
    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 {};
