import { ActionListItemProps } from "./shared.js"; import React from "react"; //#region src/ActionList/LinkItem.d.ts type LinkProps = { download?: string; href?: string; hrefLang?: string; media?: string; ping?: string; rel?: string; target?: string; type?: string; referrerPolicy?: React.AnchorHTMLAttributes['referrerPolicy']; className?: string; }; type ActionListLinkItemProps = Pick & LinkProps; //#endregion export { ActionListLinkItemProps };