import { type FC, type HTMLAttributes, type Ref } from 'react';
import { type TestableProps } from '../../utils/testId';
export interface DropdownMenuRadioGroupProps extends Omit, 'onChange'>, TestableProps {
value?: string;
onValueChange?: (details: {
value: string;
}) => void;
ref?: Ref;
}
export declare const DropdownMenuRadioGroup: FC;