import { default as React } from 'react'; export type AllowStepLabelClick = boolean | 'completed' | 'completed-or-next'; export interface IStepperContext { activeStep: number; allowStepLabelClick: AllowStepLabelClick; handleActiveStepChange: (step: number) => void; } export declare const StepperContext: React.Context;