UNPKG

formik-wizard-simple

Version:
7 lines (6 loc) 338 B
/// <reference types="react" /> import { WizardProps } from "./types"; export declare function Wizard<T>({ children, onSubmit, resetTouchedOnMove, onRenderAfterStep, onRenderBeforeStep, initialStep, formProps, ...rest }: WizardProps<T>): JSX.Element; export declare namespace Wizard { var Step: typeof import("../Step").Step; }