import { ILocalization } from "./ILocalization";
/**
 * Represents a localization.
 */
export declare class Localization {
    /**
     * Strings translated to the specified `locale`.
     */
    Data: ILocalization;
    /**
     * Gets the locales of the translations.
     */
    GetLocales(): string[];
}
