import React from 'react'; import { InternalBaseComponentProps } from '../internal/hooks/use-base-component'; import { WizardProps } from './interfaces'; interface WizardFormProps extends InternalBaseComponentProps { steps: ReadonlyArray; activeStepIndex: number; 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 {};