import { LayoutCanvasStore } from "../../.."; import { BlockTitleSettingsStore, MultilingualStore } from "@omnia/fx/stores"; import { VueComponentBase } from "@omnia/fx/ux"; export default class HeaderSectionItem extends VueComponentBase { editorStore: LayoutCanvasStore; private subscriptionHandler; multilingualStore: MultilingualStore; blockTitleSettingsStore: BlockTitleSettingsStore; private localizationService; private omniaUxLoc; private section; private model; private headerLevels; mounted(): void; created(): void; /** * Watch for section changes * */ private onSectionChange; private onIconValueChanged; private onHeaderLevelValueChanged; private onHeaderValueChanged; render(): VueTsxSupport.JSX.Element; }