UNPKG

@awsui/components-react

Version:

AWS UI is a collection of [React](https://reactjs.org/) components that help create intuitive, responsive, and accessible user experiences for web applications. It is developed by Amazon Web Services (AWS). This work is available under the terms of the [A

13 lines (12 loc) 510 B
import { WizardProps } from './interfaces'; interface WizardFormProps { steps: ReadonlyArray<WizardProps.Step>; activeStepIndex: number; i18nStrings: WizardProps.I18nStrings; isPrimaryLoading: boolean; onCancelClick: () => void; onPreviousClick: () => void; onPrimaryClick: () => void; } declare const WizardForm: ({ steps, activeStepIndex, i18nStrings, isPrimaryLoading, onCancelClick, onPreviousClick, onPrimaryClick }: WizardFormProps) => JSX.Element; export default WizardForm;