import type { StepperStepData } from './types'; export declare const CStepper: import("vue").DefineComponent "horizontal" | "vertical"; default: string; }; /** * Enables linear step progression in the Vue Form Wizard. * * - `true`: Steps must be completed in order. * - `false`: Users can navigate freely between steps. * * Useful for enforcing validation and structured data entry in Vue multi-step forms. */ linear: { type: BooleanConstructor; default: boolean; }; /** * The current active step index of the Vue Stepper (used for controlled mode with `v-model`). * * If this prop is not provided, the Vue Form Wizard will use `activeStepNumber` as its initial value. */ modelValue: NumberConstructor; /** * Defines the list of steps in the Vue Stepper. * * Each step should include: * - `label`: The title displayed in the step. * - `indicator` (optional): Custom icon, number, or marker. * - `formRef` (optional): A reference to the `
` used for validation in Vue Form Wizard scenarios. */ steps: { type: () => (StepperStepData | string)[]; required: true; }; /** * Controls the layout of the step indicator and label. * * - `'horizontal'`: Icon and label are side-by-side. * - `'vertical'`: Label is shown below the icon. * * Applies only when `layout` is set to `'horizontal'`. */ stepButtonLayout: { type: () => "horizontal" | "vertical"; default: string; }; /** * Enables validation of forms within each step of the Vue Form Wizard. * * When set to `true`, the user cannot proceed unless the current step's form passes `checkValidity()`. * Each step must expose a native form element via the `formRef` slot binding. */ validation: { type: BooleanConstructor; default: boolean; }; }>, () => import("vue").VNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("reset" | "update:modelValue" | "finish" | "stepChange" | "stepValidationComplete")[], "reset" | "update:modelValue" | "finish" | "stepChange" | "stepValidationComplete", import("vue").PublicProps, Readonly "horizontal" | "vertical"; default: string; }; /** * Enables linear step progression in the Vue Form Wizard. * * - `true`: Steps must be completed in order. * - `false`: Users can navigate freely between steps. * * Useful for enforcing validation and structured data entry in Vue multi-step forms. */ linear: { type: BooleanConstructor; default: boolean; }; /** * The current active step index of the Vue Stepper (used for controlled mode with `v-model`). * * If this prop is not provided, the Vue Form Wizard will use `activeStepNumber` as its initial value. */ modelValue: NumberConstructor; /** * Defines the list of steps in the Vue Stepper. * * Each step should include: * - `label`: The title displayed in the step. * - `indicator` (optional): Custom icon, number, or marker. * - `formRef` (optional): A reference to the `` used for validation in Vue Form Wizard scenarios. */ steps: { type: () => (StepperStepData | string)[]; required: true; }; /** * Controls the layout of the step indicator and label. * * - `'horizontal'`: Icon and label are side-by-side. * - `'vertical'`: Label is shown below the icon. * * Applies only when `layout` is set to `'horizontal'`. */ stepButtonLayout: { type: () => "horizontal" | "vertical"; default: string; }; /** * Enables validation of forms within each step of the Vue Form Wizard. * * When set to `true`, the user cannot proceed unless the current step's form passes `checkValidity()`. * Each step must expose a native form element via the `formRef` slot binding. */ validation: { type: BooleanConstructor; default: boolean; }; }>> & Readonly<{ onReset?: ((...args: any[]) => any) | undefined; "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; onFinish?: ((...args: any[]) => any) | undefined; onStepChange?: ((...args: any[]) => any) | undefined; onStepValidationComplete?: ((...args: any[]) => any) | undefined; }>, { layout: "horizontal" | "vertical"; linear: boolean; activeStepNumber: number; stepButtonLayout: "horizontal" | "vertical"; validation: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;