import '@patternfly/patternfly/components/Wizard/wizard.css'; import { ErrorAdapter } from '../PageForm/typesErrorAdapter'; import type { PageWizardStep } from './types'; export declare function PageWizard>(props: { steps: PageWizardStep[]; stepDefaults?: { [stepID: string]: Partial; }; onCancel?: () => void; onSubmit: (wizardData: DataT) => Promise; errorAdapter?: ErrorAdapter; disableGrid?: boolean; title?: string; isVertical?: boolean; singleColumn?: boolean; }): import("react/jsx-runtime").JSX.Element;