/**
 * Interface for objects that support localized strings.
 *
 */
export default interface ILocalizable {
    titleKey?: string;
    descriptionKey?: string;
}
