/// import PropTypes from 'prop-types'; import { ListProps } from '@mui/material/List'; interface Props { classes?: Record<'tertiary', string>; className?: string; hasLeftAvatarOrIcon?: boolean; hasRightAvatarOrIcon?: boolean; hasSecondaryText?: boolean; hasTertiaryText?: boolean; nbFakeLines?: number; } declare const SimpleListLoading: { (props: Props & ListProps): JSX.Element; propTypes: { className: PropTypes.Requireable; hasLeftAvatarOrIcon: PropTypes.Requireable; hasRightAvatarOrIcon: PropTypes.Requireable; hasSecondaryText: PropTypes.Requireable; hasTertiaryText: PropTypes.Requireable; nbFakeLines: PropTypes.Requireable; }; }; export default SimpleListLoading;