import { ButtonProps } from '@mui/material'; import { FunctionComponent, ReactNode } from 'react'; declare type DropMenuProps = ButtonProps & { label: ReactNode; open?: boolean; onOpen?: () => void; onClose?: () => void; }; export declare const DropMenu: FunctionComponent; export {};