import { StyledComponent } from '@emotion/styled';
import { BoxProps } from '@mui/material';
export type StyledTableContainerProps = BoxProps & {
    /**
     * Controls the padding of the table cells
     * @default 'default'
     */
    density?: 'default' | 'compact';
    /**
     * Controls whether the rows of the table are striped using CSS. For virtualized tables, this should be set to false, since the
     * row even/oddness is not guaranteed to be consistent as DOM nodes are loaded and unloaded.
     * @default false
     */
    noStripedRows?: boolean;
    ['data-testid']?: string;
};
export declare const StyledTableContainer: StyledComponent<StyledTableContainerProps>;
//# sourceMappingURL=StyledTableContainer.d.ts.map