import { type FC, type HTMLAttributes, type Ref } from 'react';
import type { VariantProps } from 'class-variance-authority';
import { type TestableProps } from '../../utils/testId';
import { dropdownMenuItemVariants } from './classes';
export type DropdownMenuItemVariantsProps = VariantProps;
export interface DropdownMenuItemProps extends Omit, 'id'>, DropdownMenuItemVariantsProps, TestableProps {
inset?: boolean;
disabled?: boolean;
onSelect?: () => void;
/** Explicit value for programmatic highlighting via highlightedValue */
value?: string;
ref?: Ref;
}
export declare const DropdownMenuItem: FC;