import { BaseComponentContext } from './BaseComponentContext.js'; import { SurveyComponent } from '@formio/core'; export type SurveyContext = BaseComponentContext & { component: SurveyComponent; instance?: { id: string; getFieldsetLegendIds?: () => string; }; key: string; self: { getInputName: (question: { value: string; }) => string; }; value: { [key: string]: string; }; };