import { OmniaUxLocalization } from "../../..";
import { Section, StepperSectionSettings } from "../../../../models";
import { VueComponentBase } from "../../../VueComponentBase";
export interface LayoutSectionStepperRendererProps {
    section: Section;
    layoutId: string;
    useScrollMargingFix: boolean;
    themeTargetId?: string;
}
export declare class LayoutSectionStepperRenderer extends VueComponentBase<LayoutSectionStepperRendererProps> {
    section: Section<StepperSectionSettings>;
    layoutId: string;
    useScrollMargingFix: boolean;
    omniaUxLoc: OmniaUxLocalization;
    created(): void;
    private renderSectionItem;
    render(): VueTsxSupport.JSX.Element;
}
