import React from 'react'; import { SxProps, Theme } from '@mui/material'; /** Displays a dropdown icon with action buttons */ declare const TableActionButtons: React.FC<{ buttons: { label: string; onClick: () => void; icon?: JSX.Element; }[]; sx?: SxProps; }>; export { TableActionButtons };