/**
* Describes the UI related configuration of the player.
*
* @category UI
* @public
*/
export interface UIConfiguration {
/**
* The language which is used for localization.
*
* @example
*```
* ui: {
* language: 'es',
* }
* ```*/
language?: string;
}