import * as React from "react"; import { type StepperStep } from "@/components/wizard/stepper"; export type WizardProps = React.ComponentProps<"div"> & { steps: StepperStep[]; currentStep: string; onStepChange?: (stepId: string) => void; onNext?: () => void; onPrevious?: () => void; onFinish?: () => void; nextLabel?: React.ReactNode; previousLabel?: React.ReactNode; finishLabel?: React.ReactNode; children?: React.ReactNode; footer?: React.ReactNode; }; declare function Wizard({ className, steps, currentStep, onStepChange, onNext, onPrevious, onFinish, nextLabel, previousLabel, finishLabel, children, footer, ...props }: WizardProps): React.JSX.Element; export { Wizard };