@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 • 826 B
TypeScript
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;
secondaryActions?: React.ReactNode;
onCancelClick: () => void;
onPreviousClick: () => void;
onPrimaryClick: () => void;
onSkipToClick: (stepIndex: number) => void;
}
export declare const STEP_NAME_SELECTOR: string;
export default function WizardFormWithAnalytics(props: WizardFormProps): JSX.Element;
export {};
//# sourceMappingURL=wizard-form.d.ts.map