import { Signal } from "@preact/signals";
type MenuItemProps = {
    disabled?: boolean;
    highlight?: boolean;
    onClick?: (e: MouseEvent) => void;
    children: string;
    compact?: boolean;
    activeSignal?: Signal<any>;
};
declare const MenuButton: ({ disabled, highlight, onClick, children, compact, activeSignal }: MenuItemProps) => import("preact").JSX.Element;
export default MenuButton;
