import type { ComponentPropsWithRef, ElementType } from 'react'; export type WizardProperties = { /** CSS Class Name */ className?: string; /** show wizard in compact */ compact?: boolean; /** Tag of Component */ tag?: ElementType; /** show wizard in vertical */ vertical?: boolean; } & ComponentPropsWithRef; /** * Manages and navigates multi-step processes within your application. * @docs {@link https://design.visa.com/patterns/wizard | See Docs} * @related wizard-step, use-wizard, use-accordion, badge, button * @vgar TODO * @wcag TODO */ declare const Wizard: { ({ className, compact, tag: Tag, vertical, ...remainingProps }: WizardProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Wizard;