/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as Intercom from "../index";
/**
 * The Translated Content of an Group. The keys are the locale codes and the values are the translated content of the Group.
 */
export interface GroupTranslatedContent {
    /** The type of object - group_translated_content. */
    type: "group_translated_content";
    /** The content of the group in Arabic */
    ar?: Intercom.GroupContent;
    /** The content of the group in Bulgarian */
    bg?: Intercom.GroupContent;
    /** The content of the group in Bosnian */
    bs?: Intercom.GroupContent;
    /** The content of the group in Catalan */
    ca?: Intercom.GroupContent;
    /** The content of the group in Czech */
    cs?: Intercom.GroupContent;
    /** The content of the group in Danish */
    da?: Intercom.GroupContent;
    /** The content of the group in German */
    de?: Intercom.GroupContent;
    /** The content of the group in Greek */
    el?: Intercom.GroupContent;
    /** The content of the group in English */
    en?: Intercom.GroupContent;
    /** The content of the group in Spanish */
    es?: Intercom.GroupContent;
    /** The content of the group in Estonian */
    et?: Intercom.GroupContent;
    /** The content of the group in Finnish */
    fi?: Intercom.GroupContent;
    /** The content of the group in French */
    fr?: Intercom.GroupContent;
    /** The content of the group in Hebrew */
    he?: Intercom.GroupContent;
    /** The content of the group in Croatian */
    hr?: Intercom.GroupContent;
    /** The content of the group in Hungarian */
    hu?: Intercom.GroupContent;
    /** The content of the group in Indonesian */
    id?: Intercom.GroupContent;
    /** The content of the group in Italian */
    it?: Intercom.GroupContent;
    /** The content of the group in Japanese */
    ja?: Intercom.GroupContent;
    /** The content of the group in Korean */
    ko?: Intercom.GroupContent;
    /** The content of the group in Lithuanian */
    lt?: Intercom.GroupContent;
    /** The content of the group in Latvian */
    lv?: Intercom.GroupContent;
    /** The content of the group in Mongolian */
    mn?: Intercom.GroupContent;
    /** The content of the group in Norwegian */
    nb?: Intercom.GroupContent;
    /** The content of the group in Dutch */
    nl?: Intercom.GroupContent;
    /** The content of the group in Polish */
    pl?: Intercom.GroupContent;
    /** The content of the group in Portuguese (Portugal) */
    pt?: Intercom.GroupContent;
    /** The content of the group in Romanian */
    ro?: Intercom.GroupContent;
    /** The content of the group in Russian */
    ru?: Intercom.GroupContent;
    /** The content of the group in Slovenian */
    sl?: Intercom.GroupContent;
    /** The content of the group in Serbian */
    sr?: Intercom.GroupContent;
    /** The content of the group in Swedish */
    sv?: Intercom.GroupContent;
    /** The content of the group in Turkish */
    tr?: Intercom.GroupContent;
    /** The content of the group in Vietnamese */
    vi?: Intercom.GroupContent;
    /** The content of the group in Portuguese (Brazil) */
    "pt-BR"?: Intercom.GroupContent;
    /** The content of the group in Chinese (China) */
    "zh-CN"?: Intercom.GroupContent;
    /** The content of the group in Chinese (Taiwan) */
    "zh-TW"?: Intercom.GroupContent;
}
