import { ReactNode } from 'react'; import { ItemProps } from '@react-types/shared'; import { SimpleColors, NormalWeights, DropdownVariants } from '../../utils/prop-types'; import { CSS } from '../../theme/stitches.config'; export declare type DropdownItemBaseProps = ItemProps & { as?: keyof JSX.IntrinsicElements; css?: CSS; color?: SimpleColors; variant?: DropdownVariants; textColor?: SimpleColors; withDivider?: boolean; dividerWeight?: NormalWeights; command?: string; description?: string; icon?: ReactNode; className?: string; }; declare const DropdownItem: (props: DropdownItemBaseProps) => JSX.Element; export default DropdownItem;