import type { FC } from "react"; import type { ListItemSecondaryActionProps } from "../ListItemSecondaryAction"; /** * Properties for `MenuItemSecondaryAction` component. */ export interface MenuItemSecondaryActionProps extends Omit { } /** * 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;