import { ButtonProps } from '@mui/material';
import React from 'react';
interface MenuProps {
    data: {
        name: string;
        onClick?: () => void;
    }[];
    btProps?: ButtonProps;
    children?: React.ReactNode;
}
export default function CustomMenu({ data, ...props }: MenuProps): JSX.Element;
export {};
