export interface AvailableLanguage {
    /**
     * The language code
     */
    code: string;
    /**
     * Label to show
     */
    label: string;
}
