import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
export interface RadioItemProps extends ComposableProps<'label'> {
/**
* The value of this radio item
*/
value: string;
/**
* Whether this item is disabled
* @default false
*/
disabled?: boolean;
/**
* The content of the radio item (typically RadioItemInput and RadioItemLabel)
*/
children: React.ReactNode;
}
/**
* RadioItem Component
*
* A composable component for individual radio items within a RadioGroup.
* Contains RadioItemInput and RadioItemLabel sub-components.
*
* @public
*
* @example
* ```tsx
*
*
*
* Option 1
*
*
* ```
*
* @remarks
* - Wraps the HTML `