export * from '@digigov/react-core/NavListItemActionBase'; import React from 'react'; import { NavListItemButtonProps } from './index.js'; import { NavListItemLinkProps } from './NavListItemLink.js'; export type LinkButtonJoinProps = NavListItemLinkProps & NavListItemButtonProps; export interface NavListItemActionBaseProps extends LinkButtonJoinProps { /** * label is optional. * The label for the NavListItemActionBase. */ label?: string; /** * arrow is optional. * use arrow prop if you want to have arrow at the nav list item. * @value true * @value false * @default false */ arrow?: boolean; badgeText?: string; } /** * NavListItemAction must be inside the NavList. * This component has a items of NavListItemLink component inside. */ export declare const NavListItemAction: React.ForwardRefExoticComponent & React.RefAttributes>; export default NavListItemAction;