import type { SchemaValue } from "../../form/index.js"; import type { SingleSelectOptions, WidgetCommonProps } from "../widgets.js"; declare module "../../form/index.js" { interface ComponentProps { radioButtonsWidget: WidgetCommonProps & SingleSelectOptions; } interface ComponentBindings { radioButtonsWidget: "value"; } }