import React from "react";
import { ListProps as MuiListProps } from "@mui/material/List";
export interface ListProps extends Omit<MuiListProps, "disabled"> {
}
declare const List: React.FC<ListProps>;
export default List;
