import React, { FC } from "react";
interface ContextMenuUserMoreActionsProps {
    handleShowMenuNotifications: () => void;
    setIsActiveEdit: React.Dispatch<React.SetStateAction<boolean>>;
}
declare const ContextMenuUserMoreActions: FC<ContextMenuUserMoreActionsProps>;
export default ContextMenuUserMoreActions;
