import { default as React } from 'react'; import { SelectKey } from './RadioGroup'; import { RenderRadioGroupOptionProps } from './types'; /** @inheritdoc */ export interface RadioGroupOptionInheritedRenderRadioOptionProps extends RenderRadioGroupOptionProps { } export interface RadioGroupOptionOwnProps { /** * Slot for rendering additional action elements next to the radio option (e.g., buttons). */ actionSlot?: React.ReactNode; } export type RadioGroupOptionProps = RadioGroupOptionInheritedRenderRadioOptionProps & RadioGroupOptionOwnProps; export declare function RadioGroupOption({ value, checked, disabled, required, textLabel, description, validity, onChange, actionSlot, ref, ...rest }: RadioGroupOptionProps): React.JSX.Element;