import { LayoutItem, ImageBackground } from "@omnia/fx-models"; /** * Factory for Layout items * */ export declare class LayoutItemsTranslator { /** * Loads the page image from the enterprise properties * */ private static mergeInheritedSettings; /** * Translates an object and ensures all properties from the default values/structure * @param defaultValues * @param objectToTranslate */ static translateObject(defaultValues: any, objectToTranslate: any): any; /** * Translates a layout item and ensures all properties * @param layoutItem */ static translateLayoutItem(layoutItem: LayoutItem, languageTag?: string): LayoutItem; private static hasValue; private static hasColors; static hasImage(image: ImageBackground): boolean; }