type MenuItemProps = {
    disabled?: boolean;
    onClick?: () => void;
    setData: ((val: any) => void) | undefined;
    children: string;
};
declare const MenuItem: ({ disabled, onClick, setData, children }: MenuItemProps) => import("preact/jsx-runtime").JSX.Element;
export default MenuItem;
