import React from 'react'; import { RadioGroupProps } from './types'; declare const RadioGroup: ({ options, onValueChange, selectedValue, optionsDirection, optionsGap, }: RadioGroupProps) => React.JSX.Element; export default RadioGroup;