@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
7 lines (6 loc) • 325 B
TypeScript
/// <reference types="react" />
import WizardStep from "./WizardStep";
import type { Props } from "./types";
declare const Wizard: ({ dataTest, lockScrolling, direction, id, labelClose, labelProgress, completedSteps, activeStep, children, onChangeStep, }: Props) => JSX.Element;
export default Wizard;
export { WizardStep };