export declare const RadioInput: {
/**
* # RadioInput.Root
*
* The root container for a radio input group that manages the selection state and provides context for radio options.
* Handles keyboard navigation, accessibility attributes, and mutually exclusive selection behavior.
*
* @example
* ```tsx
*
* First Choice
* Second Choice
*
* ```
*/
Root: {
(props: import('./radio-input.types').RadioInputRootProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
/**
* # RadioInput.Option
*
* An individual radio option within a RadioInput group that can be selected.
* Provides visual feedback for selection state and supports keyboard interaction.
*
* @example
* ```tsx
*
* Yes
* No
*
* ```
*/
Option: {
({ children, value, ...rest }: import('./radio-input.types').RadioInputOptionProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
};