import { type ComponentPropsWithRef, type ElementType, type ReactElement } from 'react'; export type WizardStepProperties = ({ /** Cloned Element (not compatible with tag property) */ element?: never; /** Tag (not compatible with element property) */ tag?: ElementType; } | { /** Cloned Element (not compatible with tag property) */ element?: ReactElement>; /** Tag (not compatible with element property) */ tag?: never; }) & Omit, ''>; /** * Represents an individual step within a multi-step wizard process. * @docs {@link https://design.visa.com/patterns/wizard | See Docs} * @vgar TODO * @wcag TODO */ declare const WizardStep: { ({ className, element, tag: Tag, ...remainingProps }: WizardStepProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default WizardStep;