import { type FocusEvent } from 'react'; import { type DataTestId, type MaskingProps, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; import type { FormControlProps } from '../../core/types/form-control-props.js'; import type { FormControlRef } from '../shared-types.js'; /** * Properties for the RadioGroup component * @public */ export type RadioGroupProps = FormControlProps) => void | never> & StylingProps & WithChildren & DataTestId & MaskingProps; /** * Radio buttons allow users to select one option from * a group of related options. To group options, wrap the * `Radio` components inside a 'RadioGroup' component. * @public */ export declare const RadioGroup: (props: RadioGroupProps & import("react").RefAttributes>) => React.ReactElement | null;