import { SchemaDefinition } from './form-flow'; export interface Props { schema: Record; modelValue?: Record; currentStep?: string; components?: Record; /** Whether to validate required fields before allowing next step */ validateOnNext?: boolean; } declare function validateCurrentStep(): boolean; declare function goToStep(stepKey: string): void; declare function nextStep(): void; declare function prevStep(): void; declare function __VLS_template(): { attrs: Partial<{}>; slots: Partial>; formData: any; stepKey: string; errors: Record; }) => any>> & Partial any>>; refs: {}; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent, Record>; nextStep: typeof nextStep; prevStep: typeof prevStep; goToStep: typeof goToStep; visibleSteps: import('vue').ComputedRef<{ key: string; schema: SchemaDefinition>; }[]>; activeStep: import('vue').Ref; currentStepIndex: import('vue').ComputedRef; isFirstStep: import('vue').ComputedRef; isLastStep: import('vue').ComputedRef; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: Record) => any; complete: () => any; "update:currentStep": (step: string) => any; stepChange: (step: string) => any; validationError: (errors: Record) => any; }, string, import('vue').PublicProps, Readonly & Readonly<{ "onUpdate:modelValue"?: ((value: Record) => any) | undefined; onComplete?: (() => any) | undefined; "onUpdate:currentStep"?: ((step: string) => any) | undefined; onStepChange?: ((step: string) => any) | undefined; onValidationError?: ((errors: Record) => any) | undefined; }>, { validateOnNext: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; }; //# sourceMappingURL=MultiStepForm.vue.d.ts.map