/// import { GasOption } from '../../hooks'; import { SupportedGasOptions } from '../../types'; interface UseRadioGroupProps { gasOptions: { [option in SupportedGasOptions]?: GasOption; }; } export default function UseRadioGroup({ gasOptions }: UseRadioGroupProps): JSX.Element; export {};