import { ProgressingInterface } from "./interfaces"; export declare type ProgressFormType = { progress?: { progressElement?: HTMLElement; }; animation?: boolean; translateX?: number; targetMarginWidth?: number; fieldsetMargingWidth?: number; onPreNext?: (isValidFieldset?: boolean) => any; onPostNext?: () => any; }; export declare type PreventType = "next" | "prev" | true | false; export declare type ProgressingType = Record; export declare type RenderedStyle = { fieldSetParentStyle: Record; fieldsetContainerStyle: Record; formStyle: Record; fieldsetStyle: Record; };