import { Layout, LayoutItem, Block } from "@omnia/fx-models"; export declare class LayoutTemplateHelper { static copyBlockSettingsFromCurrentSettings(currentLayout: Layout, templateLayout: Layout, elementName: any, settingCopier: (fromSettings: any, toSettings: any) => void): void; static getBlocksInLayoutByType(layoutItem: LayoutItem, elementName: any): Array; /** * Get a block by name * @param blockName the name of the block */ static getBlockByName(container: LayoutItem, elementName: string): LayoutItem; }