UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

21 lines 840 B
import React from 'react'; import { InternalBaseComponentProps } from '../internal/hooks/use-base-component'; import { WizardProps } from './interfaces'; interface WizardFormProps extends InternalBaseComponentProps { steps: ReadonlyArray<WizardProps.Step>; activeStepIndex: number; showCollapsedSteps: boolean; i18nStrings: WizardProps.I18nStrings; submitButtonText?: string; isPrimaryLoading: boolean; allowSkipTo: boolean; customPrimaryActions?: React.ReactNode; secondaryActions?: React.ReactNode; onCancelClick: () => void; onPreviousClick: () => void; onPrimaryClick: () => void; onSkipToClick: (stepIndex: number) => void; } export declare const STEP_NAME_SELECTOR = "[data-analytics-funnel-key=\"step-name\"]"; export default function WizardFormWithAnalytics(props: WizardFormProps): JSX.Element; export {};