UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

10 lines (9 loc) 345 B
import React from "react"; import { WizardStep } from "./ProfileStep"; import { ProfileFormData } from "./profileSchema"; export interface ProfileWizardProps { steps: WizardStep[]; initialData?: Partial<ProfileFormData>; onSubmit?: (data: ProfileFormData) => void; } export declare const ProfileWizard: React.FC<ProfileWizardProps>;