import React from 'react';
declare const StepFormContext: React.Context<{
    name: string;
    step: number;
    total: number;
} | undefined>;
export default StepFormContext;
