import React from 'react'; import ActionListItem from './ActionListItem'; type ActionListLinkItemProps = React.AnchorHTMLAttributes & Omit, keyof React.HTMLAttributes | 'selected'> & { href: string; }; declare const ActionListLinkItem: React.ForwardRefExoticComponent & React.RefAttributes>; export default ActionListLinkItem;