import type { FC, HTMLAttributes, Ref } from 'react'; import type { VariantProps } from 'class-variance-authority'; import { type TestableProps } from '../../utils/testId'; import { dropdownMenuItemVariants } from './classes'; type DropdownMenuRadioItemVariantsProps = VariantProps; export interface DropdownMenuRadioItemProps extends Omit, 'id'>, DropdownMenuRadioItemVariantsProps, TestableProps { /** Required — identifies this radio within the group */ value: string; disabled?: boolean; closeOnSelect?: boolean; ref?: Ref; } export declare const DropdownMenuRadioItem: FC; export {};