import { Section, StepperSectionSettings } from "../../../../models";
import { VueComponentBase } from "../../..";
import { MultilingualStore } from "../../../../stores";
import { OmniaUxLocalization } from "../../../UxModels";
export interface LayoutSectionStepperProps {
    section: Section;
    layoutId: string;
    useScrollMargingFix: boolean;
    tabState: object;
    themeTargetId?: string;
}
export declare class LayoutSectionStepper extends VueComponentBase<LayoutSectionStepperProps> {
    multilingualStore: MultilingualStore;
    omniaUxLoc: OmniaUxLocalization;
    section: Section<StepperSectionSettings>;
    layoutId: string;
    useScrollMargingFix: boolean;
    tabState: object;
    private renderSectionItem;
    render(): VueTsxSupport.JSX.Element;
}
