import { Context } from 'react';
export interface WizardContextInterface {
    currentStep: number;
    numberSteps: number;
    steps: React.ReactNode[] | string[];
}
/**
 * Initialize context.
 */
export declare const WizardContext: Context<WizardContextInterface>;
