import React from 'react'; import { StepStateResult } from '../types.generated'; export const EducationStepsContext = React.createContext<{ educationSteps: StepStateResult[] | null; setEducationSteps: React.Dispatch>; educationStepIdsAllowlist: Set; setEducationStepIdsAllowlist: React.Dispatch>>; }>({ educationSteps: [], setEducationSteps: () => {}, educationStepIdsAllowlist: new Set(), setEducationStepIdsAllowlist: () => {}, });