/**
 * Represents a localization.
 */
export interface ILocalization {
    [language: string]: string;
}
