/**
 * Colors to highlight certain UI elements.
 *
 * In contrast to the `ValueState`, the semantic meaning must be defined by the application.
 */
export declare enum IndicationColor {
    /**
     * Dark Red
     */
    Indication01 = "Indication01",
    /**
     * Red
     */
    Indication02 = "Indication02",
    /**
     * Yellow
     */
    Indication03 = "Indication03",
    /**
     * Green
     */
    Indication04 = "Indication04",
    /**
     * Blue
     */
    Indication05 = "Indication05",
    /**
     * Teal
     */
    Indication06 = "Indication06",
    /**
     * Purple
     */
    Indication07 = "Indication07",
    /**
     * Pink
     */
    Indication08 = "Indication08"
}
