/**
 * The Interface that is responsible for a language file.
 */
export interface LanguageJsonFileInterface {
  default: {
    [key: string]: string
  }
}
