import { FormWizardConfig } from "./types"; import { ReformReturn } from "../../types"; /** * Hook wrapper for form wizard functionality in Reform forms * * @template T - The type of form data * @param reform - Reform hook return value * @param config - Configuration for the form wizard * @returns Form wizard state and methods * * @example * // Basic usage * const reform = useReform({...}); * const wizard = useReformWizard(reform, { * steps: [ * { id: 'personal', label: 'Personal Info', groupIndices: [0] }, * { id: 'contact', label: 'Contact Info', groupIndices: [1] } * ] * }); * * // Navigate between steps * */ export declare const useReformWizard: >(reform: ReformReturn, config: FormWizardConfig) => import("./types").FormWizardReturn;