import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface RadioItemInputProps extends Omit, 'type' | 'name' | 'value' | 'checked' | 'onChange'> { /** * The value of this radio item (inherited from RadioItem) */ value?: string; } /** * RadioItemInput Component * * A composable radio input component that wraps the HTML `` element. * Automatically handles selection state based on RadioGroup context. * * @public * * @example * ```tsx * * * * Option 1 * * * ``` * * @remarks * - Wraps the HTML `` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically applies selection state styling based on context. * - Accessible: includes ARIA attributes and keyboard navigation. */ export declare const RadioItemInput: React.ForwardRefExoticComponent>; //# sourceMappingURL=RadioItemInput.d.ts.map