import { QuestionnaireStepContextValue } from 'contexts/QuestionnaireStep/useQuestionnaireStepContext'; import { default as React } from 'react'; /** * A wrapper for unit testing questionnaire components that combines a real value from the * `useQuestionnaireStep` hook with the provided context value overrides. */ export declare const StepWrapper: ({ contextValue, children, }: { contextValue: Partial; children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element;