import { ComponentProps, MouseEvent, PropsWithChildren } from 'react';
export declare const GenericMenu: ({ children, onItemClick, }: PropsWithChildren<{
    onItemClick?: (e: MouseEvent) => void;
}>) => import("react/jsx-runtime").JSX.Element;
export declare const GenericMenuButtonItem: ({ children, ...rest }: Omit<ComponentProps<"button">, "ref">) => import("react/jsx-runtime").JSX.Element;
