import type { FC } from "react"; import { type BoxProps } from "../Box/index.js"; export interface MenuItemSecondaryActionProps extends BoxProps { } /** * For use within a MenuList (or other list that implements arrow key * navigation). The standard ListItemSecondaryAction will break keyboard * navigation in this type of list. * * @param props The component properties. */ declare const MenuItemSecondaryAction: FC; export default MenuItemSecondaryAction;