import { Tabbing } from ".";
import { ElementsOfFormFactory } from "..";
import { DateBoxFactory } from "../../../ComponentFactory/DateBox/DateBoxFactory";
import { StructrulCodeFactory } from "../../../ComponentFactory/StructructrulCode/StructrulCodeFactory";
import { ElementFactory } from "../ElementFactory";
export declare class validationTabbing {
    tabbing: Tabbing;
    currentElementFactory: ElementFactory;
    static gotoNextElement(tabbing: Tabbing, currentElementFactory: ElementFactory): void;
    elementsOfForm: ElementsOfFormFactory;
    constructor(tabbing: Tabbing, currentElementFactory: ElementFactory);
    gotoNextElement: () => void;
    goToNextElementDataBox: (currentDateBoxFactory: DateBoxFactory) => void;
    goToNextElementStructrulCode: (currentStructrulCodeFactory: StructrulCodeFactory) => void;
}
