/**
 * LocalizedValue class is responsible for
 * deserializing the response from the metadata
 * API to a localized value.
 */
export declare class LocalizedValue {
    languageId: number;
    value?: string;
}
