import React from "react";
import { ListItemProps as MuiListItemProps } from "@mui/material/ListItem";
export interface ListItemProps extends MuiListItemProps {
    as?: any;
}
declare const ListItem: React.FC<ListItemProps>;
export default ListItem;
