UNPKG

@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.

18 lines (14 loc) 500 B
import * as React from "react"; import * as Common from "../common/common"; import WizardStep from "./WizardStep"; export interface Props extends Common.Global { readonly id: string; readonly completedSteps: number; readonly activeStep: number; readonly lockScrolling?: boolean; readonly onChangeStep?: (stepIndex: number) => void | Promise<any>; readonly children: React.ReactNode; } declare const Wizard: React.FunctionComponent<Props>; export default Wizard; export { WizardStep };