import type { Component } from 'svelte';
import type { BitsPrimitiveDivAttributes, SingleToggleGroupRootPropsWithoutHTML, ToggleGroupItemProps, ToggleGroupRootPropsWithoutHTML, Without } from 'bits-ui';
import '@sjsf/form/fields/extra-widgets/radio-buttons';
import type { ToggleVariants } from '../../default-ui/toggle';
type ToggleGroupProps = SingleToggleGroupRootPropsWithoutHTML & Without<BitsPrimitiveDivAttributes, ToggleGroupRootPropsWithoutHTML> & ToggleVariants;
declare module '@sjsf/form' {
    interface UiOptions {
        shadcnRadioButtons?: ToggleGroupProps;
        shadcnRadioButtonsItem?: ToggleGroupItemProps & ToggleVariants;
    }
}
declare module '../context.js' {
    interface ThemeComponents {
        ToggleGroup: Component<ToggleGroupProps & ToggleVariants, {}, 'ref' | 'value'>;
        ToggleGroupItem: Component<ToggleGroupItemProps & ToggleVariants, {}, 'ref' | 'value'>;
    }
}
declare const RadioButtons: Component<import("@sjsf/form/fields/widgets").WidgetCommonProps<import("@sjsf/form").SchemaValue> & import("@sjsf/form/fields/widgets").Options, {}, "value">;
type RadioButtons = ReturnType<typeof RadioButtons>;
export default RadioButtons;
