UNPKG

extended-dynamic-forms

Version:

Extended React JSON Schema Form (RJSF) v6 with custom components, widgets, templates, layouts, and form events

17 lines (15 loc) 454 B
import { default as React } from 'react'; export interface WizardNavigationProps { onPrevious?: () => void; onNext?: () => void; onSubmit?: () => void; canGoNext?: boolean; canGoPrevious?: boolean; isLastStep?: boolean; submitLabel?: string; nextLabel?: string; previousLabel?: string; className?: string; style?: React.CSSProperties; } export declare const WizardNavigation: React.FC<WizardNavigationProps>;