import React, { FC } from 'react'; import { ListProps as MuiListProps, SxProps } from '@mui/material'; interface ListProps extends MuiListProps { sx?: SxProps; className?: string; children: React.ReactNode; } export declare const List: FC; export {};