import { ILocalization } from "./ILocalization";
/**
 * Provides options for the `LocalizationItem` class.
 */
export interface ILocalizationItemOptions {
    /**
     * The translations of the node.
     */
    Translations?: ILocalization;
}
