import { default as React } from 'react'; import { WithChildren } from '../../../core/types.js'; import { FeedbackState } from '../types.js'; export declare const useMainQuestionContext: () => FeedbackState | undefined; interface Props extends WithChildren { state: FeedbackState; } export declare const MainQuestionContextProvider: React.FC; export {};