import type I18nBundle from '@ui5/webcomponents-base/dist/i18nBundle.js';
import ValueState from '@ui5/webcomponents-base/dist/types/ValueState.js';
import type { ReactNode } from 'react';
export declare const getIconNameForType: (type: ValueState | keyof typeof ValueState) => string;
export declare const getValueStateMap: (i18nBundle: I18nBundle) => {
    Negative: string;
    Critical: string;
    Positive: string;
    Information: string;
    None: string;
};
export declare const resolveTitleTextStr: (titleText: ReactNode) => string;
