import { BaseComponentContext } from './BaseComponentContext.js'; import { Component, RadioComponent } from '@formio/core'; export type RadioContext = BaseComponentContext & { values: { label: string; value: string; disabled: boolean; }[]; attr: { [key: string]: string | number | boolean; }; inline: boolean | undefined; component: RadioComponent; instance: { root: { id: string; } | undefined; id: string; getFieldsetLegendIds?: () => string; }; id: string; optionsLabelPosition: string; row: string | number; input: { type: string; attr: { [key: string]: string | number | boolean; }; component: Component; }; value: string | { [key: string]: boolean; }; disabled: boolean | undefined; };