import React from 'react'; import type { FormField } from './types'; export type ExternalFunctionContextProps = { handleConfirmQuestionDeletion: (question: Readonly) => Promise; }; export const ExternalFunctionContext = React.createContext(undefined);