import type { Component } from 'svelte'; import type { RadioGroup, RadioGroupItemProps, RadioGroupRootProps, WithoutChildrenOrChild } from 'bits-ui'; 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; RadioGroupItem: Component>; } } declare const Radio: Component & import("@sjsf/form/fields/widgets").SingleSelectOptions, {}, "value">; type Radio = ReturnType; export default Radio;