import { ReactNode } from "react"; import { NonLinkProps } from "./ButtonBox"; import { Icon as IconType } from "./Icon"; interface Props { icon?: IconType; children: ReactNode; destructive?: boolean; } declare const MenuItem: ({ icon, destructive, children, ...props }: Props & NonLinkProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default MenuItem;