export declare const DictionaryLanguage: {
    readonly Eng: "eng";
    readonly Fra: "fra";
    readonly Ita: "ita";
    readonly Deu: "deu";
    readonly Spa: "spa";
    readonly Por: "por";
};
export type DictionaryLanguage = (typeof DictionaryLanguage)[keyof typeof DictionaryLanguage];
export declare const FeedOutputStatus: {
    readonly Enabled: "ENABLED";
    readonly Disabled: "DISABLED";
};
export type FeedOutputStatus = (typeof FeedOutputStatus)[keyof typeof FeedOutputStatus];
export declare const FeedProfanityFilterMode: {
    readonly Disabled: "DISABLED";
    readonly Censor: "CENSOR";
    readonly Drop: "DROP";
};
export type FeedProfanityFilterMode = (typeof FeedProfanityFilterMode)[keyof typeof FeedProfanityFilterMode];
export declare const FeedTranscriptionLanguage: {
    readonly Eng: "eng";
    readonly EngAu: "eng-au";
    readonly EngGb: "eng-gb";
    readonly EngUs: "eng-us";
    readonly Fra: "fra";
    readonly Ita: "ita";
    readonly Deu: "deu";
    readonly Spa: "spa";
    readonly Por: "por";
};
export type FeedTranscriptionLanguage = (typeof FeedTranscriptionLanguage)[keyof typeof FeedTranscriptionLanguage];
