import * as React from 'react'; import { WizardStep } from './Wizard'; export interface WizardContextType { goToStepById: (stepId: number | string) => void; goToStepByName: (stepName: string) => void; onNext: () => void; onBack: () => void; onClose: () => void; activeStep: WizardStep; } export declare const WizardContext: React.Context; export declare const WizardContextProvider: React.Provider; export declare const WizardContextConsumer: React.Consumer; //# sourceMappingURL=WizardContext.d.ts.map