import type { RadioGroup as _RadioGroup, RadioGroupItemProps, RadioGroupRootProps, WithoutChildrenOrChild } from "bits-ui"; import type { Component } from "svelte"; import "@sjsf/form/fields/extra-widgets/radio"; import "../types/label"; declare module "@sjsf/form" { interface UiOptions { shadcnRadioGroup?: WithoutChildrenOrChild; shadcnRadioItem?: Omit, "value">; } } declare module "../context.js" { interface ThemeComponents { RadioGroup: Component<_RadioGroup.RootProps, {}, "value" | "ref">; RadioGroupItem: Component>; } } declare const Radio: Component & import("@sjsf/form/fields/widgets").SingleSelectOptions, {}, "value">; type Radio = ReturnType; export default Radio;