import { Theme } from '@mui/material'; export declare const styles: { container: { width: string; overflow: "auto"; }; table: { minWidth: number; }; headerCell: { fontWeight: number; backgroundColor: (theme: Theme) => string; }; row: { '&:last-child td, &:last-child th': { border: number; }; }; rowHover: { '&:hover': { backgroundColor: (theme: Theme) => string; }; }; rowSelected: { backgroundColor: (theme: Theme) => string; '&:hover': { backgroundColor: (theme: Theme) => string; }; }; pagination: { borderTop: (theme: Theme) => string; }; };