import { ButtonHTMLAttributes, ReactNode, default as React } from 'react'; export interface DropdownItemProps extends ButtonHTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * @deprecated * A React component that will be rendered as an icon. */ icon?: ReactNode; /** * Replace the default rendered element with the one passed as a child, merging their props and behavior. * */ asChild?: boolean; /** * Emit onDismiss event when the component is clicked. */ dismissOnClick?: boolean; } declare const DropdownItem: React.ForwardRefExoticComponent>; export default DropdownItem; //# sourceMappingURL=DropdownItem.d.ts.map